我尝试将每个月的样本分组(并获取平均值)
我的Datetime具有datetime索引,因此我尝试使用Month的Pandas Dataframe group。
但是我收到以下错误消息:仅对DatetimeIndex,TimedeltaIndex或PeriodIndex有效,但有一个'Int64Index'实例
我的日期时间具有索引日期时间,也尝试再次对其进行转换,但是仍然发生。
`
df.dtypes
df.head
Unnamed: 0 int64
CO float64
Benzene float64
NO2 int64
Temperature float64
Humidity float64
Datetime datetime64[ns]
dtype: object
Unnamed: 0 CO Benzene NO2 Temperature Humidity Datetime
0 9165 1.6 6.4 102 16.3 65.2 2005-03-27 00:00:00
3 52 5.4 21.8 134 9.7 64.6 2004-12-03 23:00:00
4 7510 3.0 13.4 172 6.0 53.3 2005-01-17 21:00:00
6 7798 1.1 2.8 101 2.5 51.0 2005-01-29 10:00:00
7 8143 1.0 4.4 90 19.4 32.4 2005-02-13 16:00:00`