事件处理:Matplotlib' s图()和pyplot的图()

时间:2015-08-11 04:44:18

标签: python matplotlib

http://matplotlib.org/users/event_handling.html中所述,以下示例代码正常运行

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(np.random.rand(10))

def onclick(event):
    print 'button=%d, x=%d, y=%d, xdata=%f, ydata=%f'%(
        event.button, event.x, event.y, event.xdata, event.ydata)

cid = fig.canvas.mpl_connect('button_press_event', onclick)

但为什么

from matplotlib.figure import Figure

fig = Figure()
ax = fig.add_subplot(111)
ax.plot(np.random.rand(10))

def onclick(event):
    print 'button=%d, x=%d, y=%d, xdata=%f, ydata=%f'%(
        event.button, event.x, event.y, event.xdata, event.ydata)

cid = fig.canvas.mpl_connect('button_press_event', onclick)

不起作用(虽然它基本相同)?错误是

AttributeError: 'NoneType' object has no attribute 'mpl_connect'

这真让我感到困惑,因为

type(fig)

在两种情况下都按预期给出相同的结果:

<class 'matplotlib.figure.Figure'>

1 个答案:

答案 0 :(得分:5)

这是因为当您使用Figure创建独立Figure()实例时,画布不会自动设置,您必须使用方法 - fig.set_canvas()设置画布。由于您未执行此操作fig.canvasNone,当您尝试 - fig.canvas.mpl_connect时,您获得了AttributeError

但是当你使用pyplot并使用 - plt.figure()得到数字时 - 它会为你创建画布。如果您想知道在哪里,那么matplotlib.pyplot.figure()在内部使用matplotlib.backend.new_figure_manager()来创建图形,并且(取决于后端)创建图形,gtk的示例可用{{3} } - 第99行 -

canvas = FigureCanvasGTK(figure)