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

Python Pandas - ส่งคืนนามแฝงสตริงของความถี่อนุกรมเวลาที่ใช้กับอ็อบเจ็กต์ระยะเวลาที่กำหนด


ในการส่งคืนนามแฝงสตริงของความถี่อนุกรมเวลาที่ใช้กับออบเจ็กต์ Period ที่กำหนด ให้ใช้ period.freqstr ทรัพย์สิน

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

import pandas as pd

pandas.Period หมายถึงช่วงเวลาหนึ่ง การสร้างวัตถุระยะเวลาสองรายการ -

period1 = pd.Period("2020-09-23 03:55:20")
period2 = pd.Period(freq="Y", year = 2021, month = 2, day = 14, hour = 2, minute = 35)

แสดงวัตถุรอบระยะเวลา -

print("Period1...\n", period1)
print("Period2...\n", period2)

รับนามแฝงสตริงของความถี่ -

res1 = period1.freqstr
res2 = period2.freqstr

ตัวอย่าง

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

import pandas as pd

# The pandas.Period represents a period of time
# creating two Period objects
period1 = pd.Period("2020-09-23 03:55:20")
period2 = pd.Period(freq="Y", year = 2021, month = 2, day = 14, hour = 2, minute = 35)

# display the Period objects
print("Period1...\n", period1)
print("Period2...\n", period2)

# get the string alias of the frequency
res1 = period1.freqstr
res2 = period2.freqstr

# Return the string alias of the frequency from two Period objects
print("\nString alias of the frequency from the 1st Period object ...\n", res1)
print("\nString alias of the frequency from the 2nd Period object ...\n", res2)

ผลลัพธ์

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

Period1...
2020-09-23 03:55:20

Period2...
2021

String alias of the frequency from the 1st Period object ...
<Second>

String alias of the frequency from the 2nd Period object ...
<YearEnd: month=12>