I have some data that has dates in it such as:
1979-02-15
1979-02-15
1979-02-17
1979-02-17
I would like to group the data both by year, month, and date so that the data looks like
1979
02
15
1979-02-15
1979-02-15
1979
02
17
1979-02-17
1979-02-17
I have found the function
grouped = df.groupby(lambda x: x.year)
but this only allows for grouping by the year. So, my question is how do I do multi-level grouping by date in pandas?