dask.dataframe.Series.dt.week

dask.dataframe.Series.dt.week#

dataframe.Series.dt.week#

The week ordinal of the year.

This docstring was copied from pandas.core.indexes.accessors.CombinedDatetimelikeProperties.week.

Some inconsistencies with the Dask version may exist.

See also

PeriodIndex.day_of_week

The day of the week with Monday=0, Sunday=6.

PeriodIndex.dayofweek

The day of the week with Monday=0, Sunday=6.

PeriodIndex.week

The week ordinal of the year.

PeriodIndex.weekday

The day of the week with Monday=0, Sunday=6.

PeriodIndex.year

The year of the period.

Examples

>>> idx = pd.PeriodIndex(["2023-01", "2023-02", "2023-03"], freq="M")
>>> idx.week  # It can be written `weekofyear`
Index([5, 9, 13], dtype='int64')