Python | Панды Timestamp.dayofweek

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

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 pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(2017, 1, 15, 12)
  
# Print the Timestamp object
print(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 week
ts.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 pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(year = 2009, month = 10
          day = 21, tz = "Europe/Berlin")
  
# Print the Timestamp object
print(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 week
ts.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. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.