Say I have a Multi-index dataframe:
df = df.set_index(['Year', 'Month', 'Week'])
I would like to add an additional index ('day') to it (from the existing set of columns)
The following doesn't work:
df.set_index([df.index, 'day']) 
How can I do this without resetting again the index?
