如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'>
答案 0 :(得分:5)
这是因为当您使用Figure
创建独立Figure()
实例时,画布不会自动设置,您必须使用方法 - fig.set_canvas()
设置画布。由于您未执行此操作fig.canvas
为None
,当您尝试 - fig.canvas.mpl_connect
时,您获得了AttributeError
。
但是当你使用pyplot
并使用 - plt.figure()
得到数字时 - 它会为你创建画布。如果您想知道在哪里,那么matplotlib.pyplot.figure()
在内部使用matplotlib.backend.new_figure_manager()
来创建图形,并且(取决于后端)创建图形,gtk
的示例可用{{3} } - 第99行 -
canvas = FigureCanvasGTK(figure)