如何在searborn barplot的所有酒吧顶部添加数据标签?

时间:2017-02-11 15:49:00

标签: python matplotlib data-visualization seaborn

我的数据如下:

data=io.StringIO("""x1,x2,x3
    1,A,0.42
    1,B,0.62
    2,A,0.24
    2,B,0.58
    """)
df = pd.read_csv(data, sep=",")

我试图在每个栏上方制作一个带有数据标签的seaborn条形图:

ax = sns.barplot (data=df, x='x2', y='x3', hue='x1', 
                  palette=sns.xkcd_palette(['blue', 'red']))
ax.legend(loc='center right', bbox_to_anchor=(1.03, 0.9),
          ncol=1, fancybox=True, shadow=True)

barwidth = [0.4,0.4]
ax.set_ylim(0, 0.7)
label_ = df.x3
for bar,newwidth, label in zip(ax.patches,barwidth, label_):
    x = bar.get_x()
    width = bar.get_width()
    height = bar.get_height()

    centre = x+width/2.
    bar.set_x(centre-newwidth/2.)
    bar.set_width(newwidth)

    ax.text(x+width/2.,
            height + 0.03,
            '{0:4.2f}'.format(label),
            ha="center") 

但是,这就是我所得到的。似乎seaborn将酒吧视为两个补丁而不是4个,每组一个。我无法找到解决问题的方法。非常感谢帮助。提前谢谢。

enter image description here

1 个答案:

答案 0 :(得分:1)

你在定义this.append('hello'); 时犯了一个小错误。它的长度应为四:

barwidth

正如你现在所做的那样,你的for循环只经历了两次迭代,因为它受到条带宽度的限制。