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

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


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

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

import pandas as pd

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

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

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

timestamp.to_period(freq='Q')

ตัวอย่าง

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

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 quarterly using the "freq" parameter with value 'Q'
print("\nTimestamp to Period with quarterly frequency...\n", timestamp.to_period(freq='Q'))

ผลลัพธ์

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

Timestamp...
 2021-09-18 11:50:20.000033
Timestamp to Period with quarterly frequency...
 2021Q3