gpt4 book ai didi

python - 无法使用 pd.to_datetime 转换为日期时间

转载 作者:太空宇宙 更新时间:2023-11-03 18:07:19 27 4
gpt4 key购买 nike

我正在尝试读取 csv 文件并将其转换为数据帧以用作时间序列。csv 文件是这种类型:

         #Date      Time    CO_T1_AHU.01_CC_CTRV_CHW__SIG_STAT
0 NaN NaN %
1 NaN NaN Cooling Coil Hydronic Valve Position
2 2014-01-01 00:00:00 0
3 2014-01-01 01:00:00 0
4 2014-01-01 02:00:00 0
5 2014-01-01 03:00:00 0
6 2014-01-01 04:00:00 0

我使用以下方式读取文件:

df = pd.read_csv ('filepath/file.csv', sep=';', parse_dates = [[0,1]])

产生这个结果:

             #Date_Time   FCO_T1_AHU.01_CC_CTRV_CHW__SIG_STAT
0 nan nan %
1 nan nan Cooling Coil Hydronic Valve Position
2 2014-01-01 00:00:00 0
3 2014-01-01 01:00:00 0
4 2014-01-01 02:00:00 0
5 2014-01-01 03:00:00 0
6 2014-01-01 04:00:00 0

继续将字符串转换为日期时间并将其用作索引:

pd.to_datetime(df.values[:,0])
df.set_index([df.columns[0]], inplace=True)

所以我明白了:

                      FCO_T1_AHU.01_CC_CTRV_CHW__SIG_STAT
#Date_Time
nan nan %
nan nan Cooling Coil Hydronic Valve Position
2014-01-01 00:00:00 0
2014-01-01 01:00:00 0
2014-01-01 02:00:00 0
2014-01-01 03:00:00 0
2014-01-01 04:00:00 0

但是,pd.to_datetime 无法转换为日期时间。有没有办法找出错误是什么?

非常感谢。路易斯

最佳答案

字符串条目“nan nan”无法使用 to_datetime 进行转换,因此请将其替换为空字符串,以便现在可以将它们转换为 NaT:

In [122]:

df['Date_Time'].replace('nan nan', '',inplace=True)
df
Out[122]:
Date_Time index CO_T1_AHU.01_CC_CTRV_CHW__SIG_STAT
0 0 %
1 1 Cooling Coil Hydronic Valve Position
2 2014-01-01 00:00:00 2 0
3 2014-01-01 01:00:00 3 0
4 2014-01-01 02:00:00 4 0
5 2014-01-01 03:00:00 5 0
6 2014-01-01 04:00:00 6 0
In [124]:

df['Date_Time'] = pd.to_datetime(df['Date_Time'])
df

Out[124]:
Date_Time index CO_T1_AHU.01_CC_CTRV_CHW__SIG_STAT
0 NaT 0 %
1 NaT 1 Cooling Coil Hydronic Valve Position
2 2014-01-01 00:00:00 2 0
3 2014-01-01 01:00:00 3 0
4 2014-01-01 02:00:00 4 0
5 2014-01-01 03:00:00 5 0
6 2014-01-01 04:00:00 6 0

更新

实际上,如果您只是设置 coerce=True 那么它就可以很好地转换:

df['Date_Time'] = pd.to_datetime(df['Date_Time'], coerce=True)

关于python - 无法使用 pd.to_datetime 转换为日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26613083/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com