如何显示最高职位的百分比

时间:2019-03-26 14:07:00

标签: python pandas matplotlib seaborn

我正在使用seaborn的计数图显示2个分类数据的计数分布。很好,它可以工作,但我希望每个图的百分比都显示在条形图的顶部。请问我该怎么做?

fig, ax = plt.subplots(1, 2)
sns.countplot(y = df['current_status'], ax=ax[0]).set_title('Current Occupation')
sns.countplot(df['gender'], ax=ax[1]).set_title('Gender distribution')

enter image description here

0 个答案:

没有答案