如何使情节不消失? [英] How to make the plot not disappear?

查看:66
本文介绍了如何使情节不消失?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设您需要将 figuresubplot 存储在变量中(以便以后修改属性).如何让整个图形在几毫秒后保持不动而不很快消失?

Suppose you need to store the figure and subplot in variables (to later modify attributes). How can you make the whole figure to stay and not quickly disappear after some millisecs?

import matplotlib.pyplot as plt

fig = plt.figure() 

ax = fig.add_subplot(2,2,1)
ax.plot(1)

fig.show()

推荐答案

fig改为plt:

plt.show()

这篇关于如何使情节不消失?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆