如果我运行以下代码:
import matplotlib.pyplot as plt
import numpy as np
#plt.ion()
while True:
print('loop')
x = range(10)
y = np.random.rand(10)
plt.scatter(x, y)
plt.show()
然后,我看到屏幕上显示了一个散点图。然后,每次我关闭绘图窗口时,它都会显示一个带有新数据的新绘图。
但是,如果我取消对plt.ion()
行的注释,则根本不会显示任何内容。没有创建窗口,程序只是在循环中继续,打印出“循环”。
我希望能够显示一个图形,然后自动返回到代码,同时图形仍然显示。我该怎么做呢?
发布于 2019-02-14 19:25:31
如果您想要在相同的图形窗口上绘图,而不是在每次迭代时生成一个新窗口,则可以使用以下方法:
import matplotlib.pyplot as plt
import numpy as np
plt.ion()
fig, ax = plt.subplots(1, 1)
while True:
# If wanting to see an "animation" of points added, add a pause to allow the plotting to take place
plt.pause(1)
x = range(10)
y = np.random.rand(10)
ax.scatter(x, y)
您看到的结果将取决于您使用的matplotlib后端。如果您想要查看添加的新点,则应使用Qt4
或Qt5
https://stackoverflow.com/questions/54697399
复制相似问题