gpt4 book ai didi

python - 如何访问 python datetime.time 列中的小时数

转载 作者:行者123 更新时间:2023-11-28 21:37:09 26 4
gpt4 key购买 nike

我有一个数据框:

TRADE_DATE TICKET_TIME GATE_ENTRY_TIME GATE_EXIT_TIME
2016-09-23 18:00:27 18:02:28 18:55:35
2016-09-23 18:08:48 18:09:01 18:31:11
2016-09-23 19:05:33 19:06:33 19:41:43
2016-09-23 18:06:55 18:08:42 18:34:41
2016-09-23 10:31:35 10:32:06 10:47:27

我想通过从 TICKET_TIME 列中的 datetime.time 值中提取小时数来创建一个新列。

我尝试了 df['HOUR'] = df['TICKET_TIME'].dt.hour,但没有成功:

AttributeError: Can only use .dt accessor with datetimelike values

最佳答案

如果使用 times,请使用列表推导:

print (type(df.loc[0,"TICKET_TIME"]))
<class 'datetime.time'>

df['Hour'] = [x.hour for x in df['TICKET_TIME']]

替代解决方案:

df['Hour'] = pd.to_datetime(df['TICKET_TIME'].astype(str)).dt.hour

print (df)
TRADE_DATE TICKET_TIME GATE_ENTRY_TIME GATE_EXIT_TIME Hour
0 2016-09-23 18:00:27 18:02:28 18:55:35 18
1 2016-09-23 18:08:48 18:09:01 18:31:11 18
2 2016-09-23 19:05:33 19:06:33 19:41:43 19
3 2016-09-23 18:06:55 18:08:42 18:34:41 18
4 2016-09-23 10:31:35 10:32:06 10:47:27 10

关于python - 如何访问 python datetime.time 列中的小时数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50150560/

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