无法标记sns.catplot()的多行

时间:2018-09-25 18:53:17

标签: python matplotlib seaborn

这是我的源代码:

plot = sns.catplot(x='Year',
                   y='Graduation Rate',
                   col='Group',
                   hue='Campus',
                   kind='bar',
                   col_wrap=4,
                   data=mbk_grad.sort_values(['Group', 'Campus']))

for i in np.arange(2):
    for j in np.arange(4):
        ax = plot.facet_axis(i,j) 
        for p in ax.patches:
            if str(p.get_height()) != 'nan':
                ax.text(p.get_x() + 0.06, p.get_height() * .8, '{0:.2f}%'.format(p.get_height()), color='white', rotation='vertical', size='large')

plt.show()

输出如下:

enter image description here

如何获得第一行之后的行,就像第一行一样?为什么我的嵌套for循环不起作用?

1 个答案:

答案 0 :(得分:3)

如果您查看plot.axes.shape,将会看到轴的数组不是您期望的(2,4),而是(8,)一维数组。这是因为您使用的是col_wrap,而不是定义布局网格。

plot = sns.catplot(x='Year',
                   y='Graduation Rate',
                   col='Group',
                   hue='Campus',
                   kind='bar',
                   col_wrap=4,
                   data=df_sum.sort_values(['Group', 'Campus']))

for i in np.arange(8):
#     for j in np.arange(4):
        ax1 = plot.facet_axis(0,i)
        for p in ax1.patches:
            if str(p.get_height()) != 'nan':
                ax1.text(p.get_x() + 0.06, p.get_height() * .8, '{0:.2f}%'.format(p.get_height()), color='white', rotation='vertical', size='large')

输出:

enter image description here

PS。我参加了布克·华盛顿(HSEP)。我的HISD学校在哪里?