2016-10-29 14 views
0

私はこのスクリプトを動作させようとしていますが、ターミナルで実行するときはいつでも、スクリプトがまだ実行中であってもレンダリングしません。Qt5Aggバックエンドを使用してmatplotlibグラフをレンダリングできません

私は窓10のコンピュータによ

pip install Qt5Agg 

を使用してQt5Aggをインストールしました。
私はPython 3.5を使用しています
私は端末にエラーがありません。
私はスクリプトに必要なすべての依存関係を持っています。すべての

import csv 
import numpy as np 
from sklearn.svm import SVR 
import matplotlib.pyplot as plt 


plt.switch_backend('Qt5Agg') 



dates = [] 
prices = [] 

def get_data(filename): 
    with open(filename, 'r') as csvfile: 
     csvFileReader = csv.reader(csvfile) 
     next(csvFileReader) # skipping column names 
     for row in csvFileReader: 
      dates.append(int(row[0].split('-')[0])) 
      prices.append(float(row[1])) 
    return 

def predict_price(dates, prices, x): 
    dates = np.reshape(dates,(len(dates), 1)) # converting to matrix of n X 1 

    svr_lin = SVR(kernel= 'linear', C= 1e3) 
    svr_poly = SVR(kernel= 'poly', C= 1e3, degree= 2) 
    svr_rbf = SVR(kernel= 'rbf', C= 1e3, gamma= 0.1) # defining the support vector regression models 
    svr_rbf.fit(dates, prices) # fitting the data points in the models 
    svr_lin.fit(dates, prices) 
    svr_poly.fit(dates, prices) 

    plt.scatter(dates, prices, color= 'black', label= 'Data') # plotting the initial datapoints 
    plt.plot(dates, svr_rbf.predict(dates), color= 'red', label= 'RBF model') # plotting the line made by the RBF kernel 
    plt.plot(dates,svr_lin.predict(dates), color= 'green', label= 'Linear model') # plotting the line made by linear kernel 
    plt.plot(dates,svr_poly.predict(dates), color= 'blue', label= 'Polynomial model') # plotting the line made by polynomial kernel 
    plt.xlabel('Date') 
    plt.ylabel('Price') 
    plt.title('Support Vector Regression') 
    plt.legend() 
    plt.show() 

    return svr_rbf.predict(x)[0], svr_lin.predict(x)[0], svr_poly.predict(x)[0] 

get_data('deutch.csv') # calling get_data method by passing the csv file to it 
#print "Dates- ", dates 
#print "Prices- ", prices 

predicted_price = predict_price(dates, prices, 40) 

print(predicted_price) 

答えて

1

まず、何Qt5Aggがないので、私は、あなたがPyQt5がインストールされていることを推測:ここ

はスクリプトです。

plt.switch_backendを使用しないでください。ここでドキュメントを簡単に見ることができます(http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.switch_backend)。

pyplotをインポートした後にバックエンドを変更することはできません、このようなあなたのimport文を変更します。

import matplotlib 
matplotlib.use('Qt5Agg') 
import matplotlib.pyplot as plt 
関連する問題