modin.pandas.DatetimeIndex.dayofweek¶
- property DatetimeIndex.dayofweek: Index[source]¶
The day of the week with Monday=0, Sunday=6.
Return the day of the week. It is assumed the week starts on Monday, which is denoted by 0 and ends on Sunday which is denoted by 6. This method is available on both Series with datetime values (using the dt accessor) or DatetimeIndex.
- Return type:
An Index Containing integers indicating the day number.
Examples