How to plot this dataframe below with its value AND percentage on the chart?
Activity Month Total Monthly Actual Hours Total Monthly Work Hours
0 Apr-19 35381.25 42592
1 May-19 31722.50 44528
2 Jun-19 27708.50 38720
3 Jul-19 34283.50 44528
4 Aug-19 32225.60 42592
For now I only can plot it normally using this code:
display(df.reset_index())
df.plot(kind='bar').tick_params(rotation = 0)
plt.ylabel('Work Hours')
plt.xlabel('Month')
I wanted to plot this chart to be like this: