class pandas.tseries.offsets.FY5253Quarter(n=1, normalize=False, weekday=0, startingMonth=1, qtr_with_extra_week=1, variation='nearest') [source]
DateOffset increments between business quarter dates for 52-53 week fiscal year (also known as a 4-4-5 calendar).
It is used by companies that desire that their fiscal year always end on the same day of the week.
It is a method of managing accounting periods. It is a common calendar structure for some industries, such as retail, manufacturing and parking industry.
For more information see: http://en.wikipedia.org/wiki/4-4-5_calendar
The year may either: - end on the last X day of the Y month. - end on the last X day closest to the last day of the Y month.
X is a specific day of the week. Y is a certain month of the year
startingMonth = 1 corresponds to dates like 1/31/2007, 4/30/2007, … startingMonth = 2 corresponds to dates like 2/28/2007, 5/31/2007, … startingMonth = 3 corresponds to dates like 3/30/2007, 6/29/2007, …
| Parameters: |
|
|---|
base | Returns a copy of the calling offset object with n=1 and all other attributes equal. |
| freqstr | |
| kwds | |
| name | |
| nanos | |
| rule_code |
apply_index(self, other) | Vectorized apply of DateOffset to DatetimeIndex, raises NotImplentedError for offsets without a vectorized implementation. |
rollback(self, dt) | Roll provided date backward to next offset only if not on offset. |
rollforward(self, dt) | Roll provided date forward to next offset only if not on offset. |
| __call__ | |
| apply | |
| copy | |
| get_weeks | |
| isAnchored | |
| onOffset | |
| year_has_extra_week |
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.25.0/reference/api/pandas.tseries.offsets.FY5253Quarter.html