按日期索引熊猫数据框

时间:2020-03-21 03:43:26

标签: python pandas

我正在尝试通过以下方式按日期索引我的熊猫数据框:

df = pd.to_datetime(df)

但出现以下错误:

    ValueError: to assemble mappings requires at least that [year, month, day] 

    be specified: [day,month,year] is missing

我当前的熊猫数据框看起来 like this.

1 个答案:

答案 0 :(得分:0)

您正在尝试转换整个数据框。相反,您只想将该函数应用于数据框索引。

df.index = pd.to_datetime(df.index)