我正在使用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')