How can I add the count on top of each bar in the catplot?
sns.set(font_scale = 1.4)
g = sns.catplot(y = 'Count',
x = 'Family Type',
data = ser,
palette = 'colorblind',
height = 4.2,
aspect = 2,
kind='bar',
legend = True)
plt.title('title',
fontsize = 20)
g.set_xticklabels(rotation=45)