Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Trả lại Timedelta mới với độ phân giải mili giây

Để trả lại một Timedelta mới được làm nổi theo giải pháp này, hãy sử dụng timedelta.floor () phương pháp. Đối với độ phân giải phân lớp mili giây, hãy đặt tham số freq thành giá trị mili giây.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

TimeDeltas là thư viện ngày giờ tiêu chuẩn của Python sử dụng một cách biểu diễn khác là thời gian của họ. Tạo một đối tượng Timedelta

timedelta = pd.Timedelta('2 days 10 hours 45 min 20 s 35 ms 55 ns')

Hiển thị Timedelta

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

Trả lại Dấu thời gian được phân lớp với độ phân giải mili giây được phân lớp

timedelta.floor(freq='ms')

Ví dụ

Sau đây là mã

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 10 hours 45 min 20 s 35 ms 55 ns')

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

# return the floored Timestamp
# with milliseconds floored resolution
res = timedelta.floor(freq='ms')

# display the floored Timestamp
print("\nTimedelta (milliseconds floored)...\n", res)

Đầu ra

Điều này sẽ tạo ra mã sau

Timedelta...
2 days 10:45:20.035000055

Timedelta (milliseconds floored)...
2 days 10:45:20.035000