I have basically two DataFrames from different dates and want to join them into one
let's say this is data from 25 Sep
hour    columnA  columnB
0       12       24
1       45       87
2       10       58
3       12       13
4       12       20
here is data from 26sep
hour    columnA  columnB
0       54       89
1       45       3
2       33       97
3       12       13
4       78       47
now I want to join both DataFrames and get MultiIndex DataFrame like this
25sep hour  columnA  columnB
        0       12       24
        1       45       87
        2       10       58
        3       12       13
        4       12       20
26sep hour  columnA  columnB
        0       54       89
        1       45       3
        2       33       97
        3       12       13
        4       78       47
I read the docs about MultiIndex but am not sure how to apply it to my situation.


