I have below Dataframe with MultiIndex columns, need to prepare regular dataframe
df:
Instrument PDKRW1M
Field ER
Date
2019-02-28 1124.0
2019-03-01 1125.5
2019-03-04 1126.0
2019-03-05 1126.5
2019-03-06 1127.0
2019-03-07 1132.0
2019-03-08 1133.5
2019-03-11 1133.0
2019-03-12 1128.0
2019-03-13 1129.5
2019-03-14 1135.0
df.columns:
MultiIndex(levels=[['PDKRW1M'], ['ER']],
labels=[[0], [0]],
names=['Instrument', 'Field'])
Want to prepare dataframe like this:
Date Value Instrument Field
2019-02-28 1124.0 PDKRW1M ER
2019-03-01 1125.5 PDKRW1M ER
2019-03-04 1126.0 PDKRW1M ER
2019-03-05 1126.5 PDKRW1M ER
2019-03-06 1127.0 PDKRW1M ER
2019-03-07 1132.0 PDKRW1M ER
2019-03-08 1133.5 PDKRW1M ER
2019-03-11 1133.0 PDKRW1M ER
2019-03-12 1128.0 PDKRW1M ER
2019-03-13 1129.5 PDKRW1M ER
2019-03-14 1135.0 PDKRW1M ER
2019-03-14 1135.0 PDKRW1M ER