@@ -2506,6 +2506,19 @@ cdef class BQuarterEnd(QuarterOffset):
2506
2506
startingMonth = 2 corresponds to dates like 2/28/2007, 5/31/2007, ...
2507
2507
startingMonth = 3 corresponds to dates like 3/30/2007, 6/29/2007, ...
2508
2508
2509
+ Parameters
2510
+ ----------
2511
+ n : int, default 1
2512
+ The number of quarters represented.
2513
+ normalize : bool, default False
2514
+ Normalize start/end dates to midnight before generating date range.
2515
+ startingMonth : int, default 3
2516
+ A specific integer for the month of the year from which we start quarters.
2517
+
2518
+ See Also
2519
+ --------
2520
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
2521
+
2509
2522
Examples
2510
2523
--------
2511
2524
>>> from pandas.tseries.offsets import BQuarterEnd
@@ -2534,6 +2547,19 @@ cdef class BQuarterBegin(QuarterOffset):
2534
2547
startingMonth = 2 corresponds to dates like 2/01/2007, 5/01/2007, ...
2535
2548
startingMonth = 3 corresponds to dates like 3/01/2007, 6/01/2007, ...
2536
2549
2550
+ Parameters
2551
+ ----------
2552
+ n : int, default 1
2553
+ The number of quarters represented.
2554
+ normalize : bool, default False
2555
+ Normalize start/end dates to midnight before generating date range.
2556
+ startingMonth : int, default 3
2557
+ A specific integer for the month of the year from which we start quarters.
2558
+
2559
+ See Also
2560
+ --------
2561
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
2562
+
2537
2563
Examples
2538
2564
--------
2539
2565
>>> from pandas.tseries.offsets import BQuarterBegin
@@ -2562,6 +2588,19 @@ cdef class QuarterEnd(QuarterOffset):
2562
2588
startingMonth = 2 corresponds to dates like 2/28/2007, 5/31/2007, ...
2563
2589
startingMonth = 3 corresponds to dates like 3/31/2007, 6/30/2007, ...
2564
2590
2591
+ Parameters
2592
+ ----------
2593
+ n : int, default 1
2594
+ The number of quarters represented.
2595
+ normalize : bool, default False
2596
+ Normalize start/end dates to midnight before generating date range.
2597
+ startingMonth : int, default 3
2598
+ A specific integer for the month of the year from which we start quarters.
2599
+
2600
+ See Also
2601
+ --------
2602
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
2603
+
2565
2604
Examples
2566
2605
--------
2567
2606
>>> ts = pd.Timestamp(2022, 1, 1)
@@ -2590,6 +2629,19 @@ cdef class QuarterBegin(QuarterOffset):
2590
2629
startingMonth = 2 corresponds to dates like 2/01/2007, 5/01/2007, ...
2591
2630
startingMonth = 3 corresponds to dates like 3/01/2007, 6/01/2007, ...
2592
2631
2632
+ Parameters
2633
+ ----------
2634
+ n : int, default 1
2635
+ The number of quarters represented.
2636
+ normalize : bool, default False
2637
+ Normalize start/end dates to midnight before generating date range.
2638
+ startingMonth : int, default 3
2639
+ A specific integer for the month of the year from which we start quarters.
2640
+
2641
+ See Also
2642
+ --------
2643
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
2644
+
2593
2645
Examples
2594
2646
--------
2595
2647
>>> ts = pd.Timestamp(2022, 1, 1)
0 commit comments