Python | Панды Period.asfreq
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Period.asfreq() function is used to convert Period to desired frequency, either at the start or end of the interval.
Syntax : Period.asfreq()
Parameters :
freq : string
how : Start or end of the timespanReturn : resampled : Period
Example #1: Use Period.asfreq() function to change the frequency of the given period from ‘Seconds’ to ‘Days’
# importing pandas as pdimport pandas as pd # Create the Period objectprd = pd.Period(freq ="S", year = 2000, month = 2, day = 22, hour = 8, minute = 21, second = 24) # Print the Period objectprint(prd) |
Выход :
Now we will use the Period.asfreq() function to change the frequency of the prd object to ‘Daily frequency’.
# change the frequencyprd.asfreq(freq ="D") |
Выход :

As we can see in the output, the Period.asfreq() function has successfully changed the frequency of the given object to the desired frequency.
Example #2: Use Period.asfreq() function to change the frequency of the given period from ‘Seconds’ to ‘Hours’
# importing pandas as pdimport pandas as pd # Create the Period objectprd = pd.Period(freq ="S", year = 2006, month = 10, hour = 15, minute = 49, second = 17) # Print the objectprint(prd) |
Выход :

Now we will use the Period.asfreq() function to change the frequency of the prd object to ‘hourly frequency’.
# change the frequencyprd.asfreq(freq ="H") |
Выход :
As we can see in the output, the Period.asfreq() function has successfully changed the frequency of the given object to the desired frequency.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.