I have a dataframe that looks as follows:
          Sim_1     Sim_2     Sim_3          
2016   1.063708  1.008885  1.028539  
2017   1.114644  0.994331  1.043218    
In order to append it to another, two-indexed dataframe, I'd like to add a new level below the existing column names, such that the dataframe will have following structure
SIMULATION  Sim_1     Sim_2     Sim_3   
IDX          LR        LR        LR
2016      1.063708  1.008885  1.028539  
2017      1.114644  0.994331  1.043218   
How would I do this?

