用数据值注释Seaborn点图

时间:2020-04-12 17:49:44

标签: python-3.x matplotlib seaborn

我想附加与以下代码生成的点图中每个点相关的“值”。我的代码如下:

#data for pointplot with error bars
y = ['SC', 'GA', "FL", "MD"]
x = [.9, 1, 7, 4]
e = [.1, 0, .2, .3]

#plot
ax=sns.pointplot(x,y, join = False)
ax.errorbar(x,y, xerr=e, fmt='o', capsize=5)
ax.axvline(1, color='gray', linestyle='--')

#annotate points
for x,y in zip(x,y):
    ax.text(x, y,str(x),horizontalalignment='center',color='black',weight='light')
sns.despine()

结果显示在下方enter image description here

但是,我的文字遍历数据点,使结果显得笨拙。如何将文本中的“值”移动到数据点上方?

0 个答案:

没有答案