我有一个散点图,它由对scatter的不同调用组成:
import matplotlib.pyplot as plt
import numpy as np
def onpick3(event):
index = event.ind
print '--------------'
print index
artist = event.artist
print artist
fig_handle = plt.figure()
x,y = np.random.rand(10),np.random.rand(10)
x1,y1 = np.random.rand(10),np.random.rand(10)
axes_size = 0.1,0.1,0.9,0.9
ax = fig_handle.add_axes(axes_size)
p = ax.scatter (x,y, marker='*', s=60, color='r', picker=True, lw=2)
p1 = ax.scatter (x1,y1, marker='*', s=60, color='b', picker=True, lw=2)
fig_handle.canvas.mpl_connect('pick_event', onpick3)
plt.show()
我希望这些点是可点击的,并获得所选索引的 x,y。但是,由于scatter
被多次调用,我得到了两次相同的索引,所以我不能x[index]
在onpick3
方法中使用
有没有直接的方法来获得积分?
似乎event.artist
回馈的回报PathCollection
与scatter
(在这种情况下)给予的相同。但我找不到任何方法来使用它来提取尝试使用的所选索引的- 但它似乎并没有返回所有散点,而只是我点击的那个..所以我真的不知道什么是回馈,什么是功能回馈p
p1
x,y
event.artist.get_paths()
event.artist
event.artist.get_paths()
编辑
似乎event.artist._offsets
给出了一个具有相关偏移量的数组,但由于某种原因,在尝试使用时event.artist.offsets
我得到了
AttributeError: 'PathCollection' object has no attribute 'offsets'
(虽然如果我理解文档,它应该在那里)