我试图在类
中插入此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'
这可能是什么原因? 当不在课堂内时,代码完美地运作
非常感谢
答案 0 :(得分:-1)
我怀疑代码是否在类外工作。您在此处遇到的问题是您使用的'button_press_event'
没有artist
属性。无论是在课堂内还是课堂外,这都不会改变。
如果您想使用event.artist
,则需要使用'pick_event'
。这显示在matplotlib页面上的event picking example。
如果您想使用'button_press_event'
,则无法使用event.artist
,而是需要通过查询某位艺术家是否包含该事件来找出所点击的元素,例如if line.contains(event)[0]: ...
。参见例如这个问题:How to check if click is on scatter plot point with multiple markers (matplotlib)