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

Python Pandas - 주어진 타임스탬프를 시간별 빈도로 기간으로 변환

<시간/>

주어진 타임스탬프를 기간으로 변환하려면 timestamp.to_period()를 사용하세요. 방법. 그 안에서 freq를 사용하여 주파수를 설정합니다. 매개변수. 시간당 주파수의 경우 주파수를 H로 설정합니다.

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

import pandas as pd

Pandas에서 타임스탬프 개체 만들기

timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33)

타임스탬프를 기간으로 변환합니다. 값이 'H'인 "freq" 매개변수를 사용하여 빈도를 시간당으로 설정했습니다.

timestamp.to_period(freq='H')

예시

다음은 코드입니다.

import pandas as pd

# set the timestamp object in Pandas
timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33)

# display the Timestamp
print("Timestamp...\n", timestamp)

# convert timestamp to Period
# we have set the frequency as hourly using the "freq" parameter with value 'H'
print("\nTimestamp to Period with hourly frequency...\n", timestamp.to_period(freq='H'))

출력

그러면 다음 코드가 생성됩니다.

Timestamp...
 2021-09-18 11:50:20.000033
Timestamp to Period with hourly frequency...
 2021-09-18 11:00