Hi, I have created a horizontal bar chart using this command -
survey['DevType'].value_counts(normalize=True)[0:20].plot.barh(
figsize=(17,22),
color='mediumseagreen',
fontsize=23)
plt.title('Top 20 Developer Type', fontsize=35)
plt.show()
The figure look like this -
Can anybody tell me how to make it upside down? I want the higher values at the top, not at the bottom.