- 此问题已在此处有答案**:
Is there a way to detach matplotlib plots so that the computation can continue?(21个回答)
5年前关闭。
在plt.show()
之后,我只想继续。但是,有必要关闭弹出图。怎么才能不参加呢?
这是我的代码:
plt.show()
time.sleep(1)
plt.close('all')
其他代码
还有一个问题是如何最大限度地利用plt.show()
制作图形
Is there a way to detach matplotlib plots so that the computation can continue?(21个回答)
5年前关闭。
在plt.show()
之后,我只想继续。但是,有必要关闭弹出图。怎么才能不参加呢?
这是我的代码:
plt.show()
time.sleep(1)
plt.close('all')
其他代码
还有一个问题是如何最大限度地利用plt.show()
制作图形
1条答案
按热度按时间wooyq4lh1#
我也遇到过类似的问题,并在SO上找到了解决方案。我认为你需要plt.ion()。一个例子
工作正常,但它会发出以下警告
我不知道这是否与3.6版本有关。