@@ -2690,6 +2690,13 @@ cdef class MonthEnd(MonthOffset):
2690
2690
2691
2691
MonthEnd goes to the next date which is an end of the month.
2692
2692
2693
+ Parameters
2694
+ ----------
2695
+ n : int, default 1
2696
+ The number of months represented.
2697
+ normalize : bool, default False
2698
+ Normalize start/end dates to midnight before generating date range.
2699
+
2693
2700
See Also
2694
2701
--------
2695
2702
:class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
@@ -2721,6 +2728,13 @@ cdef class MonthBegin(MonthOffset):
2721
2728
2722
2729
MonthBegin goes to the next date which is a start of the month.
2723
2730
2731
+ Parameters
2732
+ ----------
2733
+ n : int, default 1
2734
+ The number of months represented.
2735
+ normalize : bool, default False
2736
+ Normalize start/end dates to midnight before generating date range.
2737
+
2724
2738
See Also
2725
2739
--------
2726
2740
:class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
@@ -2751,6 +2765,17 @@ cdef class BusinessMonthEnd(MonthOffset):
2751
2765
2752
2766
BusinessMonthEnd goes to the next date which is the last business day of the month.
2753
2767
2768
+ Parameters
2769
+ ----------
2770
+ n : int, default 1
2771
+ The number of months represented.
2772
+ normalize : bool, default False
2773
+ Normalize start/end dates to midnight before generating date range.
2774
+
2775
+ See Also
2776
+ --------
2777
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
2778
+
2754
2779
Examples
2755
2780
--------
2756
2781
>>> ts = pd.Timestamp(2022, 11, 29)
@@ -2778,6 +2803,17 @@ cdef class BusinessMonthBegin(MonthOffset):
2778
2803
BusinessMonthBegin goes to the next date which is the first business day
2779
2804
of the month.
2780
2805
2806
+ Parameters
2807
+ ----------
2808
+ n : int, default 1
2809
+ The number of months represented.
2810
+ normalize : bool, default False
2811
+ Normalize start/end dates to midnight before generating date range.
2812
+
2813
+ See Also
2814
+ --------
2815
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
2816
+
2781
2817
Examples
2782
2818
--------
2783
2819
>>> ts = pd.Timestamp(2022, 11, 30)
0 commit comments