Hi I have data like below.
I need to write a code dynamically to input my year and make a plot between month and number of messages. The year 2016 in my data has only 6 months and rest doesn't exist.
I tried setting year as index and tried plotting.
dff[dff.index == 2015].plot(marker='*')
But the plot I did is not what is required.
