我不知道如何在pyqtgraph中实现实时绘图。该文档的实现尚未在文档中实现。
有谁可以提供一个简单的例子?
Pyqtgraph只能通过快速绘制新的绘图数据来实现实时绘图。如何实现实时绘图高度依赖于应用程序中的细节和控制流程。
最常见的方式是:
pw = pg.plot()
while True:
...
pw.plot(x, y, clear=True)
pg.QtGui.QApplication.processEvents()
pw = pg.plot()
timer = pg.QtCore.QTimer()
def update():
pw.plot(x, y, clear=True)
timer.timeout.connect(update)
timer.start(16)