我是 pyqtgraph 的新手,但我无法让它工作。我在 VS code 中将以下代码作为 jupyter 单元运行:
# %%
import pyqtgraph as pg
import numpy as np
x = np.linspace(0,10)
y = np.linspace(0,10)
X, Y = np.meshgrid(x, y)
img = np.sin(X)*np.sin(Y)
pg.image(img)
然后我得到一个没有反应的冷冻细胞。如何在 pyqtgraph 中获得简单的绘图?
在最后添加
pg.exec()
就可以了。有关初学者的更多信息,我建议查看示例程序(运行 pyqtgraph.examples.run()
)。它们可能非常复杂,但据我所知,没有很多其他好的资源。