I have a dataframe tha tI have grouped by month and day and looks like this
Value
1 2 22
10 30
15 5
2 8 12
20 15
3 5 20
The ifrst index indicates the month and the second index refers the day.
I would like to plot the column "Value" on a plot where the need to be day-month in this format, e.g 2-Jan
When I cam calling df.index.tolist() I am getting a tuple of the indexes (1,2),(1,10) etc but I do not know how can I convert these to a daytime object.Thanks