我在交互模式下使用matplotlib向用户显示一个帮助他们输入一系列变量的图表。他们可以选择点击“?”显示此图,然后将重复提示变量。
如果仍然显示该图,我怎么知道不重新绘制该图?
从表面上看,我有这个笨重的(伪等)代码:
answer = None
done_plot = False
while answer == None:
answer = get_answer()
if answer == '?':
if done_plot:
have_closed = True
##user's already requested a plot - has s/he closed it?
## some check here needed:
have_closed = ?????
if have_closed == False:
print 'You already have the plot on display, will not re-draw'
answer = None
continue
plt.ion()
fig = plt.figure()
### plotting stuff
done_plot = True
answer = None
else:
###have an answer from the user...
我可以使用什么(根据plt.gca(),无花果等...)来确定我是否需要重新绘制?我可以检查某个地方吗?
非常感谢,
大卫
答案 0 :(得分:19)
与unutbu的答案一样,你也可以检查一个给定的数字是否仍然打开
import matplotlib.pyplot as plt
if plt.fignum_exists(<figure number>):
# Figure is still opened
else:
# Figure is closed
数字的图号在fig.number
。
PS:请注意figure(num=…)
中的“数字”实际上可以是一个字符串:它显示在窗口标题中。但是,该数字仍具有number
属性,该属性为数字:原始字符串num
值不能与fignum_exists()
一起使用。
PPS:也就是说,subplots(…, num=<string num>)
使用给定的字符串号码正确恢复现有数字。因此,在Matplotlib的某些部分中,数字仍以其字符串编号为人所知(但fignum_exists()
不使用此类字符串)。
答案 1 :(得分:9)
import matplotlib.pyplot as plt
if plt.get_fignums():
# window(s) open
else:
# no windows