python Pandas - 按小时舍入 Timedelta
要通过指定的分辨率舍入 Timedelta,请使用 **timestamp.round()** 方法。使用值 H 设置 hourly(小时)频率分辨率的 freq 参数。
首先要导入所需库 -
import pandas as pd
TimeDeltas 是 Python 标准 datetime 库使用不同表示的 timedelta。创建一个 Timedelta 对象
timedelta = pd.Timedelta('2 days 10 hours 45 min 20 s 35 ms 55 ns')
显示 Timedelta
print("Timedelta...\n", timedelta)
返回具有 hourly(小时)频率的舍入时间戳。这里,使用 "freq" 参数设置指定的分辨率
timedelta.round(freq='H')
示例
以下是代码
import pandas as pd # TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s # create a Timedelta object timedelta = pd.Timedelta('2 days 10 hours 45 min 20 s 35 ms 55 ns') # display the Timedelta print("Timedelta...\n", timedelta) # return the rounded Timestamp # with hourly frequency # Here, the specified resolution is set using the "freq" parameter res = timedelta.round(freq='H') # display the rounded Timestamp print("\nTimedelta (hourly rounded)...\n", res)
输出
将生成以下代码
Timedelta... 2 days 10:45:20.035000055 Timedelta (hourly rounded)... 2 days 11:00:00
广告