我的熊猫数据框带有日期时间索引。 我正在尝试将其标准化为午夜。 https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.dt.normalize.html 我得到的是以下
print('before')
print(df.head())
df.index=df.index.normalize()
print('after')
print(df.head())
before
cabin hx
2000-01-01 00:20:51 21.1 19.1
2000-01-01 00:21:01 21.1 19.1
2000-01-01 00:21:11 21.1 19.2
2000-01-01 00:21:21 21.1 19.1
2000-01-01 00:21:31 21.1 17.9
after
cabin hx
2000-01-01 21.1 19.1
2000-01-01 21.1 19.1
2000-01-01 21.1 19.2
2000-01-01 21.1 19.1
2000-01-01 21.1 17.9
因此,小时,分钟和秒会消失。 帮助表示赞赏。