I have a Pandas DataFrame in the form of:
hour activity
1 23
2 334
3 345
...
23 24
24 12
I just want to plot a histogram with 1-24 as bins and corresponding activity as value (height). Is there any simple way doing this in Pandas?
