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

Python Pandas - Vòng quanh Timedelta với độ phân giải được chỉ định

Để làm tròn Timedelta với độ phân giải được chỉ định, hãy sử dụng timestamp.round () phương pháp. Đặt độ phân giải bằng tham số freq.

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

import pandas as pd

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 làm tròn với tần số giây. Ở đây, độ phân giải đã chỉ định được đặt bằng tham số "freq"

timedelta.round(freq='s')

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 rounded Timestamp
# with seconds frequency
# Here, the specified resolution is set using the "freq" parameter
res = timedelta.round(freq='s')

# display the rounded Timestamp
print("\nTimedelta (seconds rounded)...\n", res)

Đầu ra

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

Timedelta...
2 days 10:45:20.035000055

Timedelta (seconds rounded)...
2 days 10:45:20