查看然后在 matplotlib 中自动关闭图形? [英] view and then close the figure automatically in matplotlib?

查看:54
本文介绍了查看然后在 matplotlib 中自动关闭图形?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须检查我的参数设置是否正确,因此我需要绘制许多图,并且要绘制这些图,我选择使用matplotlib.每次检查后,我需要单击左上角的关闭按钮.这是微不足道的.那么有没有什么方法可以让绘图在大约 3 或 5 秒内显示并自动关闭而不单击?我知道 plt.close(),但是它不起作用.这是我的代码.

I have to check whether my parameters setting is right, so I need to draw many plots, and for drawing these plots, I choose to use matplotlib. After each checking, I need to click the close button on the top left conner. It's trivial. So is there any method that can make the plot show in about 3 or 5 seconds and automatically close without clicking? I know about the plt.close(), but it doesn't work. Here is my code.

from math import *
import sys
import numpy as np
from scipy import special 
import matplotlib.pyplot as plt

x1=[]
y1=[]
x2=[]
y2=[]
x3=[]
y3=[]
with open('fort.222','r') as f:
    for line in f:
        a,b=line.split()
        x1.append(float(a))
        y1.append(float(b))

n=int(sys.argv[1])
i=0
with open('fort.777','r') as f:
    for line in f:
        if i==0:
            k1=float(line)
        i=i+1

x1,y1=np.array(x1),np.array(y1)

z1=special.eval_hermite(n,x1*k1)*sqrt(1/(sqrt(pi)*pow(2,n)*factorial(n)))*sqrt(k1)*np.exp(-np.power(k1*x1,2)/2.)                                                                                                  
plt.figure()
plt.plot(x1,z1)
plt.plot(x1,y1)
plt.plot(x1,np.zeros(len(x1)))
plt.title('single center & double center')
plt.xlim(x1.min(),x1.max())
plt.ylim(-max(abs(y1.min()-0.1),y1.max()+0.1),max(abs(y1.min()-0.2),y1.max()+0.2))
plt.xlabel('$\zeta$'+'/fm')
plt.legend(('single, n='+sys.argv[1],'double, n='+sys.argv[1]),loc=2,frameon=True)

plt.show()
plt.close()

推荐答案

文档pyplot.show() 读取:

matplotlib.pyplot.show(* args,** kw)

显示图形.当以pylab模式在ipython中运行时,显示所有数字并返回到 ipython 提示符.

Display a figure. When running in ipython with its pylab mode, display all figures and return to the ipython prompt.

在非交互模式下,显示所有图形并阻止直到图形被关闭;在交互模式下,它无效除非数字是在从非交互式更改为之前创建的交互模式(不推荐).在这种情况下,它会显示数字,但不阻塞.

In non-interactive mode, display all figures and block until the figures have been closed; in interactive mode it has no effect unless figures were created prior to a change from non-interactive to interactive mode (not recommended). In that case it displays the figures but does not block.

单个实验性关键字参数 block 可以设置为 TrueFalse 以覆盖上述阻止行为.

A single experimental keyword argument, block, may be set to True or False to override the blocking behavior described above.

因此解决方案是这样:

plt.show(block=False)
plt.pause(3)
plt.close()

这篇关于查看然后在 matplotlib 中自动关闭图形?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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