我有一个熊猫数据框,我想将时间列转换为日期时间格式。
时间
2013 年 5 月 30 日 06:00:41 -0600
import pandas as pd
df.index = pd.to_datetime(df.pop('Time'))
但它总是给出以下错误。代码有什么问题?:(
AttributeError Traceback (most recent call last)
<ipython-input-124-9219cf10d027> in <module>()
----> 1 df.index = pd.to_datetime(df.pop('Time'))
AttributeError: 'module' object has no attribute 'to_datetime'