maxframe.dataframe.Series.dt.week#
- Series.dt.week#
一年中的第几周。
参见
PeriodIndex.day_of_weekThe day of the week with Monday=0, Sunday=6.
PeriodIndex.dayofweekThe day of the week with Monday=0, Sunday=6.
PeriodIndex.week一年中的第几周。
PeriodIndex.weekdayThe day of the week with Monday=0, Sunday=6.
PeriodIndex.yearThe year of the period.
示例
>>> import maxframe.dataframe as md >>> idx = md.PeriodIndex(["2023-01", "2023-02", "2023-03"], freq="M") >>> idx.week # It can be written `weekofyear`.execute() Index([5, 9, 13], dtype='int64')