주어진 기간 객체의 빈도를 초에서 분 빈도로 변경하려면 period.asfreq()를 사용하세요. 메소드 및 매개변수 설정 'T' .
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
pandas.Period는 기간을 나타냅니다. 기간 개체 만들기. 주파수를 'freq' 매개변수를 사용하여 초, 즉 'S'로 설정했습니다.
period = pd.Period(freq="S", year = 2021, month = 9, day = 11, hour = 8, minute = 20, second = 45)
초 빈도로 기간 개체 표시
print("Period...\n", period)
기간을 초에서 분 빈도로 변환합니다. asfreq()를 사용하여 초를 분 단위로 변환하도록 "T"를 설정했습니다.
res = period.asfreq('T')
예시
다음은 코드입니다.
import pandas as pd # The pandas.Period represents a period of time # Creating a Period object # We have set the frequency as seconds ie. 'S' using the 'freq' parameter period = pd.Period(freq="S", year = 2021, month = 9, day = 11, hour = 8, minute = 20, second = 45) # display the Period object with Seconds frequency print("Period...\n", period) # Convert Period from Seconds to Minutely frequency # We have set the "T" to convert seconds to minutely frequency using asfreq() res = period.asfreq('T') # display the result after conversion from Seconds to Minutely frequency print("\nFinal result after converting frequency ...\n", res)
출력
그러면 다음 코드가 생성됩니다.
Period... 2021-09-11 08:20:45 Final result after converting frequency ... 2021-09-11 08:20