【问题标题】:Pandas multi index to datetimePandas 对日期时间的多索引
【发布时间】:2019-06-22 22:00:23
【问题描述】:

如何将以下多索引转换为日期时间对象并将其设置为新索引?

df_gauge_mean.index
Out[376]: 
MultiIndex(levels=[[2018, 2019], [1, 12], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]],
           labels=[[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]],
           names=[u'Year', u'Month', u'Day'])

我能想到的一种方法是为 3 个索引级别创建新列,然后使用 pd.to_datetime(["Year", "Month", "Day"])。有没有更直接的方法来做到这一点?同样的问题在其他地方以另一种方式提出https://stackoverflow.com/questions/26505140/convert-pandas-multi-index-to-pandas-timestamp,但还没有人回答。

【问题讨论】:

    标签: python pandas multi-index


    【解决方案1】:

    由于你没有发布你的多重索引,首先我们需要转换它

    s="MultiIndex(levels=[[2018, 2019], [1, 12], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]],labels=[[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]], names=[u'Year', u'Month', u'Day'])"
    idx=eval(s, {}, {'MultiIndex': pd.MultiIndex})
    
    
    pd.to_datetime(idx.to_frame())
    Out[761]: 
    Year  Month  Day
    2018  12     1     2018-12-01
                 2     2018-12-02
                 3     2018-12-03
                 4     2018-12-04
                 5     2018-12-05
                 6     2018-12-06
    

    【讨论】:

    • 太好了,谢谢! “to_frame()”是我要找的!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2017-04-16
    • 1970-01-01
    • 2017-08-13
    • 1970-01-01
    • 2018-04-21
    • 2017-10-18
    • 1970-01-01
    相关资源
    最近更新 更多