2

我在 imshow (地图)上有一个散点图。我想要一个点击事件来添加一个新的散点,我已经通过 scater(newx,newy)) 完成了。问题是,然后我想添加使用选择事件删除点的功能。由于没有 remove(pickX,PickY) 函数,我必须获取选中的索引并将它们从列表中删除,这意味着我不能像上面那样创建我的分散,我必须分散 (allx, ally)。

所以底线是我需要一种删除散点图并用新数据重新绘制它的方法,而不改变我的 imshow 的存在。我已经尝试并尝试过:只有一次尝试。

 fig = Figure()
 axes = fig.add_subplot(111)
 axes2 = fig.add_subplot(111)
 axes.imshow(map)
 axes2.scatter(allx,ally)
 # and the redraw
 fig.delaxes(axes2)
 axes2 = fig.add_subplot(111)
 axes2.scatter(NewscatterpointsX,NewscatterpointsY,picker=5)
 canvas.draw()

令我惊讶的是,这也免除了我的 imshow 和斧头 :(。任何实现我梦想的方法都非常感谢。安德鲁

4

1 回答 1

2

首先,您应该好好阅读这里的事件文档

您可以附加一个在单击鼠标时调用的函数。如果您维护一个可以选择的艺术家列表(在这种情况下为点),那么您可以询问鼠标单击事件是否在艺术家内部,并调用艺术家的remove方法。如果没有,您可以创建一个新艺术家,并将其添加到可点击点列表中:

import matplotlib.pyplot as plt

fig = plt.figure()
ax = plt.axes()

ax.set_xlim(0, 1)
ax.set_ylim(0, 1)

pickable_artists = []
pt, = ax.plot(0.5, 0.5, 'o')  # 5 points tolerance
pickable_artists.append(pt)


def onclick(event):
    if event.inaxes is not None and not hasattr(event, 'already_picked'):
        ax = event.inaxes

        remove = [artist for artist in pickable_artists if artist.contains(event)[0]]

        if not remove:
            # add a pt
            x, y = ax.transData.inverted().transform_point([event.x, event.y])
            pt, = ax.plot(x, y, 'o', picker=5)
            pickable_artists.append(pt)
        else:
            for artist in remove:
                artist.remove()
        plt.draw()


fig.canvas.mpl_connect('button_release_event', onclick)

plt.show()

在此处输入图像描述

希望这能帮助你实现你的梦想。:-)

于 2012-08-12T19:06:31.760 回答