Python | Панды Timestamp.dayofweek
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Timestamp.dayofweek attribute return the value of day of the week in the given Timestamp object. The days are numbered from 0 to 6 where 0 is Monday and 6 is Sunday.
Syntax : Timestamp.dayofweek
Parameters : None
Return : day of week
Example #1: Use Timestamp.dayofweek attribute to find the day of the week 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.dayofweek attribute to find out the day of the week in the given Timestamp object.
# return day of the weekts.dayofweek |
Выход :

As we can see in the output, the Timestamp.dayofweek attribute has returned 6 indicating that it is the last day of the week in the given Timestamp object.
Example #2: Use Timestamp.dayofweek attribute to find the day of the week 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.dayofweek attribute to find out the day of the week in the given Timestamp object.
# return day of the weekts.dayofweek |
Выход :

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