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

Python Pandas - 매일 빈도로 Timedelta 반올림

<시간/>

지정된 해상도로 Timedelta를 반올림하려면 timestamp.round()를 사용하세요. 방법. freq를 사용하여 일일 주파수 해상도를 설정합니다. 값이 'D'인 매개변수입니다.

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

TimeDeltas는 Python의 표준 datetime 라이브러리에서 timedelta의 다른 표현을 사용합니다. Timedelta 개체 만들기 -

timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')

타임델타 표시 -

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

매일 빈도로 반올림된 타임스탬프를 반환합니다. 여기에서 지정된 해상도는 "freq" 매개변수를 사용하여 설정됩니다 -

timedelta.round(freq='D')

예시

다음은 코드입니다 -

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 11 hours 22 min 25 s 50 ms 45 ns')

# display the Timedelta
print("Timedelta...\n", timedelta)

# return the rounded Timestamp
# with daily frequency
# Here, the specified resolution is set using the "freq" parameter
res = timedelta.round(freq='D')

# display the rounded Timestamp
print("\nTimedelta (daily rounded)...\n", res)

출력

이것은 다음 코드를 생성합니다 -

Timedelta...
2 days 11:22:25.050000045

Timedelta (daily rounded)...
2 days 00:00:00