주어진 타임스탬프를 기간으로 변환하려면 timestamp.to_period()를 사용하세요. 방법. 그 안에서 freq 매개변수를 사용하여 주파수를 설정합니다. 주간 빈도의 경우 freq를 W로 설정합니다.
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
Pandas에서 타임스탬프 개체 만들기
timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33)
타임스탬프를 기간으로 변환합니다. 값이 'W'인 "freq" 매개변수를 사용하여 빈도를 매주로 설정했습니다.
timestamp.to_period(freq='W')
예시
다음은 코드입니다.
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 weekly using the "freq" parameter with value 'W' print("\nTimestamp to Period with weekly frequency...\n", timestamp.to_period(freq='W'))
출력
그러면 다음 코드가 생성됩니다.
Timestamp... 2021-09-18 11:50:20.000033 Timestamp to Period with weekly frequency... 2021-09-13/2021-09-19