官网链接
https://pandas.pydata.org/docs/user_guide/timeseries.html#timeseries-holiday
- 将时间变成 datetime 格式
df['datetime'] = pd.to_datetime(df['time'])
- 将datetime 列设置为索引,后续才能进行resample 之类的操作
df = df.set_index('datetime')
- 按月进行统计
df_M = df.resample('M')
- 几个月的数据,按照周一-周日进行统计 groupby
weekday = df.groupby(df.index.day_of_week).mean()
0 1 2 3 4 5 6
- 很多天, 统计24小时各个小时段的平均值
df.groupby(df.index.hour).mean()