how to add the total number over a sns cout_plot code example
Example 1: percentage plot of categorical variable in python woth hue
sns.barplot(x='group', y='Values', data=df, estimator=lambda x: sum(x==0)*100.0/len(x))
Example 2: seaborn countplot hue stacked
df_plot = df.groupby(['class', 'survived']).size().reset_index().pivot(columns='class', index='survived', values=0)
class First Second Third
survived
0 80 97 372
1 136 87 119