如何规范熊猫日期时间索引

时间:2019-02-08 16:29:19

标签: python-3.x pandas datetimeindex

我的熊猫数据框带有日期时间索引。 我正在尝试将其标准化为午夜。 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

因此,小时,分钟和秒会消失。 帮助表示赞赏。

0 个答案:

没有答案