0

我有一个带有 DateTimeIndex 索引的 Pandas DataFrame。DateTimeIndex 具有分钟精度,我想将其转换为天精度。我能做的是:

df.index = df.index.values.astype('datetime64[D]')

有没有更好的办法?

4

1 回答 1

0

答案很简单:

df.resample('D', how='first')
于 2013-10-31T17:43:11.670 回答