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

Python Pandas - แปลงการประทับเวลาที่กำหนดเป็นช่วงเวลาด้วยความถี่รายชั่วโมง


ในการแปลงการประทับเวลาที่กำหนดเป็นช่วงเวลา ให้ใช้ timestamp.to_period() กระบวนการ. ภายในนั้น ตั้งค่าความถี่โดยใช้ ความถี่ พารามิเตอร์. สำหรับความถี่รายชั่วโมง ให้ตั้งความถี่เป็น H

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

import pandas as pd

สร้างวัตถุประทับเวลาใน Pandas

timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33)

แปลงการประทับเวลาเป็นช่วงเวลา เราได้ตั้งค่าความถี่เป็นรายชั่วโมงโดยใช้พารามิเตอร์ "ความถี่" โดยมีค่าเป็น 'H'

timestamp.to_period(freq='H')

ตัวอย่าง

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

import pandas as pd

# set the timestamp object in Pandas
timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33)

# display the Timestamp
print("Timestamp...\n", timestamp)

# convert timestamp to Period
# we have set the frequency as hourly using the "freq" parameter with value 'H'
print("\nTimestamp to Period with hourly frequency...\n", timestamp.to_period(freq='H'))

ผลลัพธ์

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

Timestamp...
 2021-09-18 11:50:20.000033
Timestamp to Period with hourly frequency...
 2021-09-18 11:00