gpt4 book ai didi

python - 在数据框中按日期时间按小时分组

转载 作者:行者123 更新时间:2023-12-01 01:53:45 24 4
gpt4 key购买 nike

我尝试使用这个:

casa_consumo_h = casa_consumo['date'].groupby(lambda x: x.hour).mean()

我收到以下错误:

AttributeError: 'int' object has no attribute 'hour'

我的约会属于这种类型:

date             55535 non-null datetime64[ns]

如何按小时对我的数据框进行分组?

date                         Ac      f      I      Pf     R       V
0 2017-08-01 00:00:00 37 59.97 1.49 0.4 10 22
1 2017-08-01 00:00:01 302 59.97 1.51 0.8 10 22
2 2017-08-01 00:00:03 3077 59.97 1.49 0.8 10 22
3 2017-08-01 00:00:05 300 59.97 1.50 0.8 15 22

最佳答案

用途:

df.groupby(df['date'].dt.hour).mean()

输出:

          Ac      f       I   Pf      R     V
date
0 301.78 59.97 1.4975 0.7 11.25 22.0

关于python - 在数据框中按日期时间按小时分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50452467/

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