**我的目标。**我正在使用matplotlib滑块绘制几个系列。我希望每个点都有悬停标签。每个点对应于测量。所以我想在这些悬停标签上显示测量名称。
**问题。**我如何更新新系列的标签(滑块位置)?如果我在更新功能中创建新光标,我会为每个点获得多个标签。所以我需要先以某种方式删除旧标签。我如何做到这一点?
**描述。**在第一张幻灯片上,我得到了带有A和B标签的点。在第二张幻灯片上,我应该得到C和D标签,但我再次得到A和B。
我的密码
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib.widgets import Slider
import mplcursors as mplc
%matplotlib widget
data = {'Name': ['A', 'B', 'C', 'D'], 'x': [1,3,3,2],'y': [4,7,5,1],'color': [1,2,3,2],'size' :[50,40,10,30],'slide': [1,1,2,2]}
df=pd.DataFrame.from_dict(data)
dff=df.loc[df['slide']==1]
z=list(set(df['slide'].to_list()))
x = dff['x'].to_list()
y = dff['y'].to_list()
lbl=dff['Name'].to_list()
fig, ax = plt.subplots()
ax.clear()
points = ax.scatter(x,y,s=100, alpha=0.5)
mplc.cursor(ax, hover=True).connect(
"add", lambda sel: sel.annotation.set_text(lbl[sel.index]))
xmin=min(x)
xmax=max(x)
ymin=min(y)
ymax=max(y)
ax.set_ylim([xmin-10,xmax+10])
ax.set_xlim([ymin-10,xmax+10])
axfreq = fig.add_axes([0.15, 0.1, 0.65, 0.03])
plot_slider = Slider(
ax=axfreq,
label='',
valmin=0,
valmax=len(z),
valinit=1,
valstep=1,)
def update(val):
dff=df.loc[df['slide']==plot_slider.val]
x = dff['x'].to_list()
y = dff['y'].to_list()
lbl=dff['Name'].to_list()
points.set_offsets(np.c_[x,y])
plot_slider.on_changed(update)
plt.show()
字符串
1条答案
按热度按时间kognpnkq1#
我必须(
!pip install mplcursors ipympl
)才能运行你的代码。以下是我的 * 解决方法 *,以在滑块更新后获得正确的注解/标签:
字符串
| 名称|X| y|颜色|大小|滑动|
| --|--|--|--|--|--|
| 一| 1 | 4 | 1 | 50 | 1 |
| B| 3 | 7 | 2 | 40 | 1 |
| C| 3 | 5 | 3 | 10 | 2 |
| D| 2 | 1 | 2 | 30 | 2 |
x1c 0d1x的数据