I use python3, seaborn countplot, my question :
- how to add the count values for every bar? Show the label at the top of each bar?
- how to have these bars in descending order?
I wrote this:
fig = plt.figure(figsize=(10,6))
sns.countplot(data_new['district'],data=data_new)
plt.show()
Thanks a lot !