2013-04-16 85 views
1

這是多線程python腳本(threading.thread)的一部分,通過隊列進行數據傳輸,嘗試繪製時出現錯誤在matplotlib中使用pyplot收集數據。Python錯誤:螺紋Matplotlib(Pyplot)繪圖 - x和y沒有相同的第一維

整個腳本在以前的版本中工作;唯一的變化是我分別使用pickle.dump和pickle.load來存儲和加載數據數組。在這個調試版本中,沒有啓用加載。

下面是相關代碼失敗,通過將含螺紋打破:

在主迴路(THREAD):

elif kbcheck == 'p': 
        print "I KNOW YOU TYPED P" # Debug to see if plotting is triggered. 
        PLOTFLAGQ.put(1) 

在數據處理線程:

self.PLOTQL = [self.RAL, self.THD_avgL, self.VacL, 
         self.IacL, self.PacL, self.VdcL, 
         self.IdcL, self.PdcL, self.tempL] 
if not self.PLOTFLAGQ.empty(): 
       self.plotflag = self.PLOTFLAGQ.get() 
       self.PLOTQ.put(self.PLOTQL) 

在繪圖線程中:

if not self.PLOTQ.empty(): 
       (self.RAL, self.THD_avgL, self.VacL, self.IacL, 
       self.PacL, self.VdcL, self.IdcL, self.PdcL, 
       self.TempL) = self.PLOTQ.get() 
self.XaxisL = [] 
       for i in range(len(self.VacL)): 
        self.XaxisL.append(i+1) 
self.fig = pyplot.figure() 
self.gs = gridspec.GridSpec(6,1, height_ratios = [1,2,2,2,2,2]) 
self.sT = pyplot.subplot(self.gs[0]) 
self.sT.yaxis.set_major_locator(pyplot.MaxNLocator(5)) 
self.sV = pyplot.subplot(self.gs[1]) 
self.sV.yaxis.set_major_locator(pyplot.MaxNLocator(10)) 
self.Va = self.sV.plot(self.XaxisL,self.VacL, 
             '-b',label = 'Voltage (AC)') 

這裏是調試信息:

17 
Here is the info in the Plot Thread 
the length of VacL is: 17 
[250.119, 250.156, 250.19, 250.193, 250.206, 250.158, 250.107, 250.103, 250.159, 250.156, 250.146, 250.093, 250.084, 250.095, 250.134, 250.0 
35, 249.994] 

the length of the x axis is: 17 
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] 

上面的輸出示出了採樣(17)的計數,則吸塵器列表陣列和其長度,隨後由X軸陣列(從的長度衍生其他值)。

以下是錯誤:

Exception in thread Thread-5: 
Traceback (most recent call last): 
    File "C:\Python27\lib\threading.py", line 552, in __bootstrap_inner 
    self.run() 
    File "C:\Projects\PythonScripts\Matthew_Threading_2_v0.3.3db.py", line 273, in run 
    self.Va = self.sV.plot(self.XaxisL,self.VacL,"-b",label = "Voltage AC") 
    File "C:\Python27\lib\site-packages\matplotlib\axes.py", line 3848, in plot 
    for line in self._get_lines(*args, **kwargs): 
    File "C:\Python27\lib\site-packages\matplotlib\axes.py", line 323, in _grab_next_args 
    for seg in self._plot_args(remaining, kwargs): 
    File "C:\Python27\lib\site-packages\matplotlib\axes.py", line 300, in _plot_args 
    x, y = self._xy_from_xy(x, y) 
    File "C:\Python27\lib\site-packages\matplotlib\axes.py", line 240, in _xy_from_xy 
    raise ValueError("x and y must have same first dimension") 
ValueError: x and y must have same first dimension 

我已經重寫整個程序兩次,只是改寫保存線程兩次,想不通(這似乎打破了繪圖的部分)是什麼導致這個錯誤。

如果有人能幫助我,將不勝感激。 謝謝!

+0

你爲什麼不''self.XaxisL = np.arange(len(self.VacL))+ 1'? – tacaswell

+0

您可以在您的線程程序中重現此錯誤嗎?那是在我們可以真正運行/測試的代碼中? – tacaswell

+0

你爲什麼要在屬性中完成所有這些?你可以使繪圖線程中的大部分變量都是局部變量而不是屬性嗎?我強烈懷疑你實際上有一個競賽條件,我們無法從所提供的信息中幫助你。 – tacaswell

回答

0

與此代碼替換您的繪圖命令:

try: 
    self.Va = self.sV.plot(self.XaxisL,self.VacL,'-b',label = 'Voltage (AC)') 
except ValueError: 
    print len(self.XaxisL), len(self.VacL) 
    print self.XaxisL, self.VacL 

,看看你會得到什麼。我懷疑你有比賽條件。

相關問題