I have a bar chart like this
here is my chart
I have created the chart by,
y_pos=np.arange(len(plot_label))
plt.bar(y_pos, plot_value, align='center', alpha=0.5 )
plt.xticks(y_pos, plot_label)
plt.ylabel('axis')
plt.title('Title')
I want to add the value counts at the top of each bar, for example as a label.