如何在Matplotlib中添加光标到曲线上?
要在Matplotlib中添加光标到曲线上,我们可以执行以下步骤:
- 设置图形大小并调整子图之间和周围的填充。
- 使用numpy创建 t 和 s 数据点。
- 创建一个图形和一组子图。
- 获取光标类的实例,以更新绘图中的光标点。
- 在鼠标事件中,获取鼠标当前位置的x和y数据。
- 获取x和y数据点的索引。
- 设置x和y位置。
- 设置文本位置并重新绘制agg缓冲区和鼠标事件。
- 使用 plot() 方法绘制 t 和 s 数据点。
- 设置一些轴属性。
- 使用 show() 方法来显示图形。
示例
import matplotlib.pyplot as plt
import numpy as np
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
class CursorClass(object):
def __init__(self, ax, x, y):
self.ax = ax
self.ly = ax.axvline(color='yellow', alpha=0.5)
self.marker, = ax.plot([0], [0], marker="o", color="red", zorder=3)
self.x = x
self.y = y
self.txt = ax.text(0.7, 0.9, '')
def mouse_event(self, event):
if event.inaxes:
x, y = event.xdata, event.ydata
indx = np.searchsorted(self.x, [x])[0]
x = self.x[indx]
y = self.y[indx]
self.ly.set_xdata(x)
self.marker.set_data([x], [y])
self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y))
self.txt.set_position((x, y))
self.ax.figure.canvas.draw_idle()
else:
return
t = np.arange(0.0, 1.0, 0.01)
s = np.sin(2 * 2 * np.pi * t)
fig, ax = plt.subplots()
cursor = CursorClass(ax, t, s)
cid = plt.connect('motion_notify_event', cursor.mouse_event)
ax.plot(t, s, lw=2, color='green')
plt.axis([0, 1, -1, 1])
plt.show()