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

Python Pandas - Period 객체를 월별 빈도의 타임스탬프로 반환

<시간/>

Period 객체를 월별 빈도의 타임스탬프로 반환하려면 period.to_timestamp()를 사용하세요. 메소드를 사용하고 freq 매개변수를 'M으로 설정합니다. '.

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

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" 매개변수를 사용하여 주파수를 설정했습니다. 빈도는 'M', 즉 월간

으로 설정됩니다.
print("\nPeriod to Timestamp with monthly (month-end) frequency...\n",
period.to_timestamp(freq='M'))

예시

다음은 코드입니다.

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 'M' i.e. monthly
print("\nPeriod to Timestamp with monthly (month-end) frequency...\n", period.to_timestamp(freq='M'))

출력

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

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

Period to Timestamp with monthly (month-end) frequency...
2021-09-30 00:00:00