熊猫:将PeriodIndex转换为Multiindex(年,月)

时间:2019-01-18 08:47:20

标签: python-3.x pandas type-conversion

我有一个数据框,每小时测量几个时间序列。经过精心设计和按月分组后,索引为:

PeriodIndex(['2015-01', '2015-02', '2015-03', '2015-04', '2015-05', '2015-06',
         '2015-07', '2015-08', '2015-09', '2015-10', '2015-11', '2015-12',
         '2016-01', '2016-02', '2016-03', '2016-04', '2016-05', '2016-06',
         '2016-07', '2016-08', '2016-09', '2016-10', '2016-11', '2016-12'],
        dtype='period[M]', name='DT', freq='M')

我希望(这会有所帮助)将其转换为以年为第一级,以月为第二级的多索引。

我该怎么办?

1 个答案:

答案 0 :(得分:2)