Python | Панды PeriodIndex.freq

Опубликовано: 28 Марта, 2022

Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.

Pandas PeriodIndex.freq attribute returns the time series frequency that is applied on the given PeriodIndex object.

Syntax : PeriodIndex.freq

Parameters : None

Return : Index

Example #1: Use PeriodIndex.freq attribute to find the time series frequency of the given PeriodIndex object.

# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start="2005-12-21 08:45 "
              end="2005-12-21 11:55", freq="H")
  
# Print the PeriodIndex object
print(pidx)

Выход :

Now we will use the PeriodIndex.freq attribute to find the time series frequency of the given object.

# return the frequency
pidx.freq

Выход :

As we can see in the output, the PeriodIndex.freq attribute has returned ‘Hourly’ frequency. This is the time setoes frequency that is applied on the given PeriodIndex obejct.

Example #2: Use PeriodIndex.freq attribute to find the time series frequency of the given PeriodIndex object.

Выход :

Now we will use the PeriodIndex.freq attribute to find the time series frequency of the given object.

# return the frequency
pidx.freq

Выход :

As we can see in the output, the PeriodIndex.freq attribute has returned ‘Monthly’ frequency. This is the time series frequency that is applied on the given PeriodIndex obejct.

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.

Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.