-1

好的,这是第 2 轮,感谢大家对上一个问题的帮助,但不幸的是,我又回到了开始的地方。当我尝试在该图中添加一条线时,这一切都发生了。传入的数据是来自另一个程序的列表。出于测试目的,我让另一个程序吐出 [100,110]。我想要一条线 100 条,另一条线 110 条。最终,这将是来自 Arduino 的传入数据,这些数据将是实时数据。我不断收到此错误。

AttributeError                            Traceback (most recent call last)
/Users/Tyler/Desktop/Arduino/Graphing_22.py in on_redraw_timer(self, event)
284             #self.data.extend(self.datagen.next())

285 
--> 286         self.draw_plot()
287 
288     def on_exit(self, event):

/Users/Tyler/Desktop/Arduino/Graphing_22.py in draw_plot(self)
240                    visible=self.cb_xlab.IsChecked())
241 
--> 242         self.plot_data.set_xdata(np.arange(len(self.data[0])))
243         #self.plot_data.set_xdata(np.arange([1,1000])

244         self.plot_data.set_ydata(np.array(self.data[1]))

AttributeError: 'list' object has no attribute 'set_xdata'

这是传入数据的代码以及发生错误的位置。

def __init__(self):
    wx.Frame.__init__(self, None, -1, self.title)

    self.datagen = DataGen()
    self.data = self.datagen.next()
    #splitting data at '
    #self.data = [self.datagen.next().split(",")
    self.paused = False

 if self.cb_grid.IsChecked():
        self.axes.grid(True, color='gray')
    else:
        self.axes.grid(False)

    # Using setp here is convenient, because get_xticklabels
    # returns a list over which one needs to explicitly 
    # iterate, and setp already handles this.
    #  
    pylab.setp(self.axes.get_xticklabels(), 
               visible=self.cb_xlab.IsChecked())

    self.plot_data.set_xdata(np.arange(len(self.data[0])))
    #self.plot_data.set_xdata(np.arange([1,1000])
    self.plot_data.set_ydata(np.array(self.data[1]))


    self.canvas.draw()

谢谢你们的帮助!

4

2 回答 2

0

鉴于您评论中的代码:

self.plot_data = self.axes.plot( self.data[0], linewidth=1, color=(1, 1, 0), )
self.axes.plot( self.data[1], linewidth=1, color=(1, 2, 0), )

您的问题在于plot返回它产生的线对象列表的事实。由于您似乎正在绘制一条线,因此请确保您正在查看列表的第一个(也是唯一一个)元素。

任何一个

self.plot_data = self.axes.plot( self.data[0], linewidth=1, color=(1, 1, 0), )[0]

或者

self.plot_data[0].set_xdata(np.arange(len(self.data[0])))
于 2013-09-05T21:52:08.480 回答
-1

您定义的方式似乎plot_data返回了一个列表。另外,我不确定axes.plot(*args, **kwargs)与一个参数一起使用时,是否用于任一轴上的数据。我检查了文档并发现了这一点:

plot(x, y)        # plot x and y using default line style and color
plot(x, y, 'bo')  # plot x and y using blue circle markers
plot(y)           # plot y using x as index array 0..N-1
plot(y, 'r+')     # ditto, but with red plusses

返回值是添加的行列表。那里有类型错误。这是文档set_xdata(x)

set_xdata(x)
    Set the data np.array for x
    ACCEPTS: 1D array

它来自课堂:

matplotlib.lines.Line2D(xdata, ydata, linewidth=None, linestyle=None, color=None,
marker=None, markersize=None, markeredgewidth=None, markeredgecolor=None,
markerfacecolor=None, markerfacecoloralt='none', fillstyle='full',
antialiased=None, dash_capstyle=None, solid_capstyle=None, dash_joinstyle=None,  
solid_joinstyle=None, pickradius=5, drawstyle=None, markevery=None, **kwargs)

所以你可能会考虑声明self.line = plt.lines.Line2D(self.x_data, self.y_data, linewidth=1, color=(1,1,0) )你必须使用类似的东西:

self.x_data = self.axes.plot( self.data[0] )
self.y_data = self.axes.plot( self.data[1] )

希望能帮助到你!我参考了:

更新 matplotlib 图

http://matplotlib.org/api/axes_api.html http://matplotlib.org/api/artist_api.html#matplotlib.lines.Line2D.set_xdata

于 2013-09-05T22:59:23.013 回答