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

Python Pandas - ส่งคืนชื่อของความถี่ที่ใช้กับวัตถุออฟเซ็ต


หากต้องการส่งคืนชื่อความถี่ที่ใช้กับอ็อบเจ็กต์ออฟเซ็ต ให้ใช้คุณสมบัติ offset.name ใน 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 name of the frequency on the DateOffset object..\n",
offset.name)

ตัวอย่าง

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

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 name of the frequency applied on the given DateOffset object
print("\nThe name of the frequency on the DateOffset object..\n", offset.name)

ผลลัพธ์

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

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

DateOffset...
 <3 * MonthEnds>

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

The name of the frequency on the DateOffset object..
 M