我有一些要绘制在散点图上的数据,并显示每个点的关联标签。数据看起来像
xlist=[1,2,3,4]
ylist=[2,3,4,5]
labels=['a', 'b', 'c', 'd']
我可以使用Seaborn进行绘图,并尝试使用mplcursor,但是显示的标签是x和y而不是标签。
sns.scatterplot(x, y)
mplcursors.cursor(hover=True)
如何显示标签而不是(x, y)
?
答案 0 :(得分:0)
您将需要阅读the mplcursors
documentation并将与此相关的示例从该示例复制到您的代码中。让我为您做到这一点:
import matplotlib.pyplot as plt
import seaborn as sns
import mplcursors
xlist=[1,2,3,4]
ylist=[2,3,4,5]
labels=['a', 'b', 'c', 'd']
sns.scatterplot(xlist, ylist)
cursor = mplcursors.cursor(hover=True)
cursor.connect(
"add", lambda sel: sel.annotation.set_text(labels[sel.target.index]))
plt.show()