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

Python Pandas - ส่งคืนรหัสกฎที่ใช้กับวัตถุ DateOffset ที่กำหนด


หากต้องการส่งคืนรหัสกฎที่ใช้กับวัตถุ DateOffset ที่กำหนด ให้ใช้ offset.rule_code ใน Pandas ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

from pandas.tseries.frequencies import to_offset
import pandas as pd

ตั้งค่าอ็อบเจ็กต์ประทับเวลาใน Pandas -

timestamp = pd.Timestamp('2021-09-26 03:25:02.000045')

สร้าง DateOffset เรากำลังเพิ่มเดือนที่นี่โดยใช้ความถี่ "M" -

offset = to_offset("3M")

แสดงการประทับเวลาที่อัปเดต -

print("\nUpdated Timestamp...\n",timestamp + offset)

ส่งคืนรหัสกฎของความถี่ที่ใช้กับวัตถุ DateOffset ที่กำหนด -

print("\nThe rule code of the DateOffset object..\n", offset.rule_code)

ตัวอย่าง

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

from pandas.tseries.frequencies import to_offset
import pandas as pd

# Set the timestamp object in Pandas
timestamp = pd.Timestamp('2021-09-26 03:25:02.000045')

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

# Create the DateOffset
# We are incrementing the months here using the "M" frequency
offset = to_offset("3M")

# Display the DateOffset
print("\nDateOffset...\n",offset)

# Display the Updated Timestamp
print("\nUpdated Timestamp...\n",timestamp + offset)

# return the rule code of the frequency applied on the given DateOffset object
print("\nThe rule code of the DateOffset object..\n", offset.rule_code)

ผลลัพธ์

สิ่งนี้จะสร้างรหัสต่อไปนี้ -

Timestamp...
 2021-09-26 03:25:02.000045

DateOffset...
 <3 * MonthEnds>

Updated Timestamp...
 2021-11-30 03:25:02.000045

The rule code of the DateOffset object..
 M