File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -383,7 +383,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
383
383
-i " pandas.tseries.offsets.Week.n GL08" \
384
384
-i " pandas.tseries.offsets.Week.normalize GL08" \
385
385
-i " pandas.tseries.offsets.Week.weekday GL08" \
386
- -i " pandas.tseries.offsets.WeekOfMonth SA01" \
387
386
-i " pandas.tseries.offsets.WeekOfMonth.is_on_offset GL08" \
388
387
-i " pandas.tseries.offsets.WeekOfMonth.n GL08" \
389
388
-i " pandas.tseries.offsets.WeekOfMonth.normalize GL08" \
Original file line number Diff line number Diff line change @@ -3582,6 +3582,11 @@ cdef class WeekOfMonth(WeekOfMonthMixin):
3582
3582
"""
3583
3583
Describes monthly dates like "the Tuesday of the 2nd week of each month".
3584
3584
3585
+ This offset allows for generating or adjusting dates by specifying
3586
+ a particular week and weekday within a month. The week is zero-indexed,
3587
+ where 0 corresponds to the first week of the month, and weekday follows
3588
+ a Monday=0 convention.
3589
+
3585
3590
Attributes
3586
3591
----------
3587
3592
n : int, default 1
@@ -3602,6 +3607,12 @@ cdef class WeekOfMonth(WeekOfMonthMixin):
3602
3607
- 5 is Saturday
3603
3608
- 6 is Sunday.
3604
3609
3610
+ See Also
3611
+ --------
3612
+ offsets.Week : Describes weekly frequency adjustments.
3613
+ offsets.MonthEnd : Describes month-end frequency adjustments.
3614
+ date_range : Generates a range of dates based on a specific frequency.
3615
+
3605
3616
Examples
3606
3617
--------
3607
3618
>>> ts = pd.Timestamp(2022, 1, 1)
You can’t perform that action at this time.
0 commit comments