지정된 DateOffset 개체에 적용된 빈도를 문자열로 반환하려면 offset.freqstr을 사용하세요. Pandas의 속성
먼저 필요한 라이브러리를 가져옵니다 -
from pandas.tseries.offsets import DateOffset import pandas as pd
Pandas에서 타임스탬프 개체 설정 -
timestamp = pd.Timestamp('2021-08-30 02:30:55')
DateOffset을 만듭니다. 여기서 "months" 매개변수를 사용하여 월을 증가시킵니다. −
offset = pd.tseries.offsets.DateOffset(months=3)
업데이트된 타임스탬프 표시 -
print("\nUpdated Timestamp...\n",timestamp + offset)
주어진 DateOffset 객체에 문자열로 적용된 빈도 -
print("\nFrequency on the given DataOffset...\n",offset.freqstr)
예시
다음은 코드입니다 -
from pandas.tseries.offsets import DateOffset import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-08-30 02:30:55') # Display the Timestamp print("Timestamp...\n",timestamp) # Create the DateOffset # We are incrementing the months here using the "months" parameter offset = pd.tseries.offsets.DateOffset(months=3) # Display the DateOffset print("\nDateOffset...\n",offset) # Display the Updated Timestamp print("\nUpdated Timestamp...\n",timestamp + offset) # frequency applied on the given DateOffset object as a string print("\nFrequency on the given DataOffset...\n",offset.freqstr)
출력
이것은 다음 코드를 생성합니다 -
Timestamp... 2021-08-30 02:30:55 DateOffset... <DateOffset: months=3> Updated Timestamp... 2021-11-30 02:30:55 Frequency on the given DataOffset... <DateOffset: months=3>