ax0 = sns.barplot(x='techies', y=df.index, data=df, color = "b", label="techies")
Produces this:
I want now to place an annotation just to the inside of the end of each bar with a number corresponding to its value. I need therefore (I think) to iterate through each bar, and place an annotation with the correct coordinate offset to get it there. But I cannot figure out how to get there.
Update
Notice that I am asking about doing this with Seaborn. The linked possible duplicate is with matplotlib which is different. (Thanks @dux and @xg.plt.py)