我正在尝试通过以下方式按日期索引我的熊猫数据框:
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.
答案 0 :(得分:0)
您正在尝试转换整个数据框。相反,您只想将该函数应用于数据框索引。
df.index = pd.to_datetime(df.index)