Keep plotting window open in Matplotlib

前端 未结 2 1818
鱼传尺愫
鱼传尺愫 2020-11-29 06:04

When writing scripts that use matplotlib, I temporally get an interactive graphing window when I run the script, which immediately goes away before I can view the plot. If I

2条回答
  •  情深已故
    2020-11-29 06:09

    According to the documentation, there's an experimental block parameter you can pass to plt.show(). Of course, if your version of matplotlib isn't new enough, it won't have this.

    If you have this feature, you should be able to replace plt.show() with plt.show(block=True) to get your desired behavior.

提交回复
热议问题