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

Python Pandas - 연간 빈도가 있는 타임스탬프로 Period 객체를 반환합니다.

<시간/>

Period 객체를 연간 빈도의 타임스탬프로 반환하려면 period.to_timestamp()를 사용하세요. 메소드 및 freq 매개변수를 'Y로 설정 '.

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

import pandas as pd

pandas.Period는 기간을 나타냅니다. 기간 개체 만들기

period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45)

기간 개체 표시

print("Period...\n", period)

Period 객체의 Timestamp 표현을 반환합니다. "freq" 매개변수를 사용하여 주파수를 설정했습니다. 빈도는 'Y'로 설정됩니다. 즉, 매년

print("\nPeriod to Timestamp with yearly (year-end) frequency...\n", period.to_timestamp(freq='Y'))

예시

다음은 코드입니다.

import pandas as pd

# The pandas.Period represents a period of time
# Creating a Period object
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45)

# display the Period object
print("Period...\n", period)

# Return the Timestamp representation of the Period object
# We have set the frequency using the "freq" parameter
# The frequency is set as 'Y' i.e. yearly
print("\nPeriod to Timestamp with yearly (year-end) frequency...\n", period.to_timestamp(freq='Y'))

출력

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

Period...
2021-09-18 17:20:45

Period to Timestamp with yearly (year-end) frequency...
2021-12-31 00:00:00