如何删除在Matplotlib中使用Mouse Over Event创建的绘图线?

时间:2013-07-23 19:24:34

标签: python matplotlib

我在带有鼠标悬停事件的情节中创建了一条垂直线和一条水平线。这些行旨在帮助用户选择在绘图中单击的位置。 我的问题是,当鼠标在图上移动时,之前绘制的线不会消失。 有人能解释我怎么做吗? 在OnOver函数中绘制绘图之后我使用了ax.lines.pop()但是没有用。

这是我正在使用的代码

from matplotlib import pyplot as plt
import numpy as np

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)

def OnOver(event):
    x = event.xdata
    y = event.ydata
    ax.axhline(y)
    ax.axvline(x)
    plt.draw()  


did = fig.canvas.mpl_connect('motion_notify_event', OnOver)   
#iii = fig.canvas.mpl_disconnect(did) # get rid of the click-handler
cid = fig.canvas.mpl_connect('button_press_event', OnClick)

plt.show()

提前感谢您的帮助。 IVO

1 个答案:

答案 0 :(得分:10)

您需要删除不需要的行。例如

def OnOver(event):
   if len(ax.lines) > 1 :
      ax.lines[-1].remove()
      ax.lines[-1].remove()
   ax.axhline(event.ydata)
   ax.axvline(event.xdata)
   plt.draw()

这既不强大也不高效。

我们可以只绘制一次并不断更新它们,而不是不断创建和销毁线条。

lhor = ax.axhline (0.5)
lver = ax.axvline (1)
def OnOver2(event):
   lhor.set_ydata(event.ydata)
   lver.set_xdata(event.xdata)
   plt.draw()

在这里,我使用了全局变量并在查看区域中绘制了“十字线”。它可以改为在它之外绘制或者不可见,但你明白了。

我不知道实现这一目标的最佳方式。