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

Python Pandas - Timedelta를 NumPy timedelta64로 변환

<시간/>

Timedelta를 NumPy timedelta64로 변환하려면 timedelta.to_timedelta64()를 사용하세요. 방법.

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

import pandas as pd

Timedelta 개체 만들기 -

timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')

타임델타 표시 -

print("Timedelta...\n", timedelta)

Timedelta를 NumPy timedelta64로 변환 -

timedelta.to_timedelta64()

예시

다음은 코드입니다 -

import pandas as pd

# TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s
# create a Timedelta object
timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')

# display the Timedelta
print("Timedelta...\n", timedelta)

# Convert the Timedelta to a NumPy timedelta64.
res = timedelta.to_timedelta64()

# Return the result
print("\nConverting the Timedelta to a NumPy timedelta64....\n", res)

출력

이것은 다음 코드를 생성합니다 -

Timedelta...
2 days 11:22:25.050000045

Converting the Timedelta to a NumPy timedelta64....
213745050000045 nanoseconds