Matplotlib事件选择器 - 在一个类中

时间:2017-07-14 11:14:54

标签: python events matplotlib picker

我试图在类

中插入此python文档中显示的事件选择器示例

http://matplotlib.org/users/event_handling.html

代码就像这样

import numpy as np
import matplotlib.pyplot as plt


class Test:
    def __init__(self,line):
        self.line = line
        self.cidpress = self.line.figure.canvas.mpl_connect('button_press_event', self.onpick)

    def onpick(self, event):
        thisline = event.artist
        xdata = thisline.get_xdata()
        ydata = thisline.get_ydata()
        ind = event.ind
        points = tuple(zip(xdata[ind], ydata[ind]))
        print('onpick points:', points)


fig = plt.figure()
ax = fig.add_subplot(111)
ax.set_title('click on points')

line, = ax.plot(np.random.rand(10), 'o', picker=5)  # 5 points tolerance
a = Test(line)

plt.show()

但是当点击鼠标时,我得到了这个错误。

AttributeError: 'MouseEvent' object has no attribute 'artist'

这可能是什么原因? 当不在课堂内时,代码完美地运作

非常感谢

1 个答案:

答案 0 :(得分:-1)

我怀疑代码是否在类外工作。您在此处遇到的问题是您使用的'button_press_event'没有artist属性。无论是在课堂内还是课堂外,这都不会改变。