将对象转换为日期时间时出错

时间:2019-10-14 15:12:44

标签: python pandas datetime

我正在尝试将pandas中的对象列转换为日期时间类型,但出现以下错误:

InvalidIndexError: Reindexing only valid with uniquely valued Index objects

使用:Python 3

我要转换的熊猫列的类型:对象

格式:“ 2017-12-19 17:03:21.655000 + 00:00”

该列也具有Na值

See pic

basetable.reset_index(inplace=True, drop = True)
pd.to_datetime(basetable['session_start_time'], errors='coerce', format = '%Y-%m-%D %H:%M:%S')
InvalidIndexError: Reindexing only valid with uniquely valued Index objects

更新:如果我将所有NA值都转换为空字符串,则to_datetime的转换有效。

0 个答案:

没有答案