pandas.tseries.offsets.QuarterBegin#
- class pandas.tseries.offsets.QuarterBegin#
DateOffset increments between Quarter start dates.
startingMonth = 1 corresponds to dates like 1/01/2007, 4/01/2007, … startingMonth = 2 corresponds to dates like 2/01/2007, 5/01/2007, … startingMonth = 3 corresponds to dates like 3/01/2007, 6/01/2007, …
- Parameters:
- nint, default 1
The number of quarters represented.
- normalizebool, default False
Normalize start/end dates to midnight before generating date range.
- startingMonthint, default 3
The month of the year in which quarters start.
Attributes
Return the month of the year that anchors the quarters.
See also
DateOffsetStandard kind of date increment.
Examples
>>> ts = pd.Timestamp(2022, 1, 1) >>> ts + pd.offsets.QuarterBegin() Timestamp('2022-03-01 00:00:00')