我这里有一个测试数据框。
import pandas as pd
import numpy as np
import seaborn as sns
df = pd.DataFrame({'x': [1,2,3,4],
'y': [1,4,9,16],
'z' : ['A','B','C','D']})
这将看起来像
x y z
0 1 1 A
1 2 4 B
2 3 9 C
3 4 16 D
现在,我想要使用seaborn
列进行z
散点图并提供工具提示。这是我的seaborn
散点图代码
g = sns.regplot(x=df["x"],
y=df["y"],
fit_reg=False, scatter_kws={'s':30},
color='red')
g.set_title('My Plot')
fig = g.get_figure()
fig.savefig('myplot.png')
现在,当我将鼠标悬停在数据点上时,我希望为该行显示列z
的值。我该怎么做?