是否可以有多个 PyPlot 窗口?或者我仅限于次要情节?
我不知道如何更清楚地表达我的问题。基本上,PyPlot 是否仅限于一个实例/窗口?我尝试的任何黑客或解决方法要么导致我的程序冻结,要么导致第二个 pyplot 窗口排队直到第一个窗口关闭。
I'm not sure how to word my question more clearly. Basically, is PyPlot limited to one instance/window? Any hack or workaround I try either causes my program to freeze or for the second pyplot window to be queued until the first one is closed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当然,只需打开一个新图形:
如果您在默认的 python 解释器中运行它,则这将不起作用,因为每个图形都需要进入 gui 的主循环。如果您想在交互式 shell 中运行,请查看 IPython。如果你只是正常运行它(即将它放入一个文件并调用 python filename.py),它会工作得很好。
Sure, just open a new figure:
If you're running this in the default python interpreter, this won't work, as each figure needs to enter the gui's mainloop. If you want to run things in an interactive shell, look into IPython. If you just run this normally (i.e. put it into a file and call
python filename.py
) it will work fine, though.使用 plt.figure() 并使用某个数字来固定窗口:
对于另一个绘图,使用不同的数字:
Use
plt.figure()
and use a certain number so that the window is fixed:and for another plot, use a different number:
你的问题的答案是否定的。您可以拥有任意数量的窗口。首先,只需输入
您想要的每个新数字。其次,
在您想要绘制的所有内容的末尾只写一次(!)。这是两个直方图的示例:
The answer to your question is no. You can have as many windows as you want. Firstly, just type
for every new figure you want. Secondly, write
only once (!) at the end of everything you want to plot. Here is an example for two histograms:
您可以使用 pyplot.show 属性来完成此操作
示例:
You can do it with the
pyplot.show
propertiesExample: