Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Trả về đối tượng tần số từ đối tượng PeriodIndex

Để trả về đối tượng tần suất từ ​​đối tượng PeriodIndex, hãy sử dụng PeriodIndex.freq tài sản.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

Tạo một đối tượng PeriodIndex. Chúng tôi đã đặt tần suất bằng tham số "freq" -

periodIndex = pd.PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20',
'2021-07-15', '2022-06-12', '2023-07-10'], freq="D")

Đối tượng Thời gian hiển thị -

print("PeriodIndex...\n", periodIndex)

Tần suất lập chỉ mục hiển thị -

print("\nPeriodIndex frequency...\n", periodIndex.freq)

Ví dụ

Sau đây là mã -

import pandas as pd

# Create a PeriodIndex object
# PeriodIndex is an immutable ndarray holding ordinal values indicating regular periods in time
# We have set the frequency using the "freq" parameter
periodIndex = pd.PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20',
'2021-07-15', '2022-06-12', '2023-07-10'], freq="D")

# Display PeriodIndex object
print("PeriodIndex...\n", periodIndex)

# Display PeriodIndex frequency
print("\nPeriodIndex frequency...\n", periodIndex.freq)

# Display the month number i.e. 1 = January, 2 = February ... 12 = December
print("\nMonth number...\n", periodIndex.month)

Đầu ra

Điều này sẽ tạo ra mã sau -

PeriodIndex...
PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'],
dtype='period[D]')

PeriodIndex frequency...
<Day>

Month number...
Int64Index([9, 10, 11, 7, 6, 7], dtype='int64')