this is my code
Rate = ['Total',"10+","20+","30+","40+","50+","60+"]
NetAmount = [4,2,5,-4,8,-6,7][::-1]
df = pd.DataFrame(NetAmount,index=Rate,columns=['Value'])
fig,ax = plt.subplots()
df.plot(ax=ax,kind='barh',legend=None,title='Value')
ax.set_ylabel('Rate',fontsize=12)
I want labels of my y axis above x=0 not on the extreme left. How do I do that?


