Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - 시간당 빈도로 Timedelta 반올림

<시간/>

지정된 해상도로 타임델타를 반올림하려면 timestamp.round()를 사용하세요. 방법. 값이 H인 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')

타임델타 표시

print("Timedelta...\n", timedelta)

시간당 빈도로 반올림된 타임스탬프를 반환합니다. 여기에서 지정된 해상도는 "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