【发布时间】:2014-08-31 13:43:31
【问题描述】:
使用 matplotlib,我试图在图形关闭时执行回调函数,从而重绘图形图例。但是,当我调用 ax.legend() 时,它似乎阻止了任何进一步执行的代码。所以在下面的代码中,'after' 永远不会被打印出来。
有人能解释这是为什么吗?我是否可以在 legend() 调用之后但在图形关闭之前运行代码?最终目标是在人物关闭时保存两个不同版本的人物,并在两次保存之间重新绘制图例。谢谢。
from __future__ import print_function
import matplotlib.pyplot as plt
def handle_close(evt):
f = evt.canvas.figure
print('Figure {0} closing'.format(f.get_label()))
ax = f.get_axes()
print('before')
leg = ax.legend() # This line causes a problem
print('after') # This line (and later) is not executed
xs = range(0, 10, 1)
ys = [x*x for x in xs]
zs = [3*x for x in xs]
fig = plt.figure('red and blue')
ax = fig.add_subplot(111)
ax.plot(xs, ys, 'b-', label='blue plot')
ax.plot(xs, zs, 'r-', label='red plot')
fig.canvas.mpl_connect('close_event', handle_close)
ax.legend()
plt.show()
【问题讨论】:
标签: python matplotlib event-handling legend