0

我有一些数据要绘制在散点图上,并显示每个点的关联标签。数据看起来像

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)

4

1 回答 1

0

您将需要阅读文档并将有关该问题的示例从其中mplcursors复制到您的代码中。让我为你做这件事:

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()
于 2019-04-24T01:22:32.553 回答