Python | Период панд. Неделя, год
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Period.weekofyear attribute return an integer value which is the week number of the year for the given Period obeject.
Syntax : Period.weekofyear
Parameters : None
Return : week of the year
Example #1: Use Period.weekofyear attribute to find the week number for the given Period object.
# importing pandas as pdimport pandas as pd # Create the Period objectprd = pd.Period(freq ="S", year = 2000, month = 2, day = 21, hour = 8, minute = 21) # Print the Period objectprint(prd) |
Выход :
Now we will use the Period.weekofyear attribute to find the week number of the year
# return week number for the yearprd.weekofyear |
Выход :

As we can see in the output, the Period.weekofyear attribute has returned 8 indicating that the period in the prd object lies in the 8th week of the year.
Example #2: Use Period.weekofyear attribute to find the week number for the given Period object.
# importing pandas as pdimport pandas as pd # Create the Period objectprd = pd.Period(freq ="T", year = 2006, month = 10, hour = 15, minute = 49) # Print the Period objectprint(prd) |
Выход :

Now we will use the Period.weekofyear attribute to find the week number of the year
# return week number for the yearprd.weekofyear |
Выход :

As we can see in the output, the Period.weekofyear attribute has returned 39 indicating that the period in the prd object lies in the 39th week of the year.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.