df.plot.bar(x = 'Name', y = ['Events1', 'Events2'], rot = 40)
fig, ax = plt.subplots()
df.plot.bar(x = 'Name', y = ['Events1', 'Events2'], rot = 40, ax = ax)
for p in ax.patches:
ax.annotate(np.round(p.get_height(),decimals=2), (p.get_x()+p.get_width()/2., p.get_height()))