주어진 DateOffset 개체의 나노초 수를 반환하려면 Pandas의 offset.nanos 속성을 사용하세요.
먼저 필요한 라이브러리를 가져옵니다 -
from pandas.tseries.frequencies import to_offset import pandas as pd
Pandas에서 타임스탬프 개체 설정 -
timestamp = pd.Timestamp('2021-08-30 03:08:02.000045')
DateOffset을 만듭니다. 여기서 "D" 빈도를 사용하여 날짜를 증가시킵니다. −
offset = to_offset("5D")
업데이트된 타임스탬프 표시 -
print("\nUpdated Timestamp...\n",timestamp + offset)
주어진 DateOffset 개체에서 나노초를 반환합니다. -
print("\nThe number of nanoseconds in the DateOffset object..\n", offset.nanos)
예시
다음은 코드입니다 -
from pandas.tseries.frequencies import to_offset import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-08-30 03:08:02.000045') # Display the Timestamp print("Timestamp...\n",timestamp) # Create the DateOffset # We are incrementing the days here using the "D" frequency offset = to_offset("5D") # Display the DateOffset print("\nDateOffset...\n",offset) # Display the Updated Timestamp print("\nUpdated Timestamp...\n",timestamp + offset) # return the nanoseconds in the given DateOffset object print("\nThe number of nanoseconds in the DateOffset object..\n", offset.nanos)
출력
이것은 다음 코드를 생성합니다 -
Timestamp... 2021-08-30 03:08:02.000045 DateOffset... <5 * Days> Updated Timestamp... 2021-09-04 03:08:02.000045 The number of nanoseconds in the DateOffset object.. 432000000000000