如何将对象类型转换为datetime64?

时间:2019-11-26 16:30:26

标签: python datetime object

当我看到dtype时,它似乎是对象,但无法将其转换为datetime64

0    2017-11-29 17:14:00
1    2017-02-15 15:35:00
2    2018-10-18 08:02:00
3    2017-06-22 09:25:00
4    2017-09-21 11:12:00
Name: Data e Hora Indução Anestesica, dtype: object

我已经尝试过了,但是没有用。

df['Data e Hora Indução Anestesica'].astype(str).astype(int)
hg = df['Data e Hora Indução Anestesica'].astype(str).str.zfill(6)
df['Data e Hora Indução Anestesica'] = pd.to_datetime(hg, format='%Y/%m/%d%H%M%S')

1 个答案:

答案 0 :(得分:0)

就做

df['Data e Hora Indução Anestesica'] = pd.to_datetime(df['Data e Hora Indução Anestesica'])