我有這個foll。數據幀:將多級熊貓索引轉換爲datetime
col_a col_b
4 15 69.717679 0.09701
16 69.717679 0.09701
17 69.717679 0.09701
18 69.717679 0.09701
19 69.717679 0.09701
它具有多層結構,索引與表示月的第一級(4)和表示月(1..31)的日的第二天水平。如何將多級索引轉換爲日期時間索引?年的值是2013年
我嘗試這樣做:
pd.to_datetime(df_past.index.levels[1] + df_past.index.levels[0] + 2013, format="%d%m%Y")
,但得到的錯誤:
*** ValueError: cannot evaluate a numeric op with unequal lengths
感謝@joris,這是偉大的 – user308827