用Python 2.7编写,使用pyQt 4.8.5。
我怎样才能在pyQt中实时更新一个Matplotlib widget? 目前我正在对数据进行采样(目前是随机的.gauss),附加这个数据并绘制 - 你可以看到我每次都在清除数字并为每次调用重新绘制。
def getData(self):
self.data = random.gauss(10,0.1)
self.ValueTotal.append(self.data)
self.updateData()
def updateData(self):
self.ui.graph.axes.clear()
self.ui.graph.axes.hold(True)
self.ui.graph.axes.plot(self.ValueTotal,'r-')
self.ui.graph.axes.grid()
self.ui.graph.draw()
我的图形用户界面可以工作,但我认为这是实现这一目标的错误方法,因为它的效率很低,我相信我应该在绘图时使用 "动画调用"(?),尽管我不知道怎么做。
一个想法是在第一次绘图完成后只更新图形对象。
应该返回一个
对象,其x和y数据你可以修改。
axes.plot
Line2D
http://matplotlib.org/api/artist_api.html#matplotlib.lines.Line2D.set_xdata
因此,一旦你画好了线,就不要删除和画新的,而是修改现有的。
def updateData(self): if not hasattr(self, 'line'): # this should only be executed on the first call to updateData self.ui.graph.axes.clear() self.ui.graph.axes.hold(True) self.line = self.ui.graph.axes.plot(self.ValueTotal,'r-') self.ui.graph.axes.grid() else: