I'm trying to annotate values at the end of my horizontal bar plot given by:
UK.groupby(['College/University']).size().sort_values(ascending=True).plot(kind='barh',figsize=(8,8),title='UK Uni')
If this helps:
y=list(UK.groupby(['College/University']).size())
returns
[2, 1, 5, 2, 6, 1, 13, 1, 4, 1, 1, 1, 11, 1, 1, 2, 12]
Any idea? :)