pyqtgraph:如何在 VS Code 中制作简单的绘图?

问题描述 投票:0回答:1

我是 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 中获得简单的绘图?

python visual-studio-code plot pyqtgraph
1个回答
0
投票

在最后添加

pg.exec()
就可以了。有关初学者的更多信息,我建议查看示例程序(运行
pyqtgraph.examples.run()
)。它们可能非常复杂,但据我所知,没有很多其他好的资源。

© www.soinside.com 2019 - 2024. All rights reserved.