Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - ปัดเศษ Timedelta ด้วยความละเอียดที่ระบุ


หากต้องการปัดเศษ Timedelta ด้วยความละเอียดที่ระบุ ให้ใช้ timestamp.round() กระบวนการ. ตั้งค่าความละเอียดโดยใช้พารามิเตอร์ความถี่

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

สร้างวัตถุ Timedelta

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

แสดงไทม์เดลต้า

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

ส่งกลับ Timestamp ที่ปัดเศษด้วยความถี่วินาที ที่นี่ ความละเอียดที่ระบุถูกกำหนดโดยใช้พารามิเตอร์ "ความถี่"

timedelta.round(freq='s')

ตัวอย่าง

ต่อไปนี้เป็นรหัส

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)

ผลลัพธ์

ซึ่งจะได้รหัสดังต่อไปนี้

Timedelta...
2 days 10:45:20.035000055

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