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

Python Pandas - 시간델타를 분 단위로 반올림

<시간/>

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

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

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='T')

다음은 코드입니다 -

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 minutely frequency
# Here, the specified resolution is set using the "freq" parameter
res = timedelta.round(freq='T')

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

출력

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

Timedelta...
2 days 10:45:20.035000055

Timedelta (minutely rounded)...
2 days 10:45:00