Python | Панды Timestamp.dayofyear
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Timestamp.dayofyear attribute return the day of the year for the given Timestamp object. The days are numbered from 1 to 365. where 1 being the first day of the year to 365 being the last day of the year.
Syntax : Timestamp.dayofyear
Parameters : None
Return : day of year
Example #1: Use Timestamp.dayofyear attribute to find the day of the year in the given Timestamp object.
# importing pandas as pdimport pandas as pd # Create the Timestamp objectts = pd.Timestamp(2017, 1, 15, 12) # Print the Timestamp objectprint(ts) |
Выход :

Now we will use the Timestamp.dayofyear attribute to find out the day of the year in the given Timestamp object.
# return day of the yearts.dayofyear |
Выход :

As we can see in the output, the Timestamp.dayofyear attribute has returned 15 indicating that it is the 15th day of the year in the given Timestamp object.
Example #2: Use Timestamp.dayofyear attribute to find the day of the year in the given Timestamp object.
# importing pandas as pdimport pandas as pd # Create the Timestamp objectts = pd.Timestamp(year = 2009, month = 10, day = 21, tz = "Europe/Berlin") # Print the Timestamp objectprint(ts) |
Выход :

Now we will use the Timestamp.dayofyear attribute to find out the day of the year in the given Timestamp object.
# return day of the yearts.dayofyear |
Выход :

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