gpt4 book ai didi

python - Pandas时间序列分类问题

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

在操作原始日期后,我尝试将变量 [Time] 分类为日期时间。问题出在第 6 行代码上,抛出错误:“TypeError: 无法转换为日期时间”

原始本地时间列包含:

03.01.2016 17:00:00.000 GMT-0500    
<小时/>
gu['Local time']=gu['Local time'].map(lambda x: x.rstrip('GMT-0500'))
gu['DateTime']=pd.to_datetime(gu['Local time'])

gu['Date']=gu['DateTime'].dt.date
gu['Date']=pd.to_datetime(gu['Date'])

gu['Time']=gu['DateTime'].dt.time
gu['Time']=pd.to_datetime(gu['Time'])

print (gu.info())

最佳答案

您可以使用格式参数来指定日期时间格式

gu['Time'] = pd.to_datetime(gu['Time'], format="%H:%M:%S")

有关详细信息,请参阅文档。

pandas.to_datetime documentation

关于python - Pandas时间序列分类问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54696334/

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