Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.tseries.offsets.FY5253

class pandas.tseries.offsets.FY5253(n=1, normalize=False, weekday=0, startingMonth=1, variation='nearest')[source]

Describes 52-53 week fiscal year. This is 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

Parameters:
n : int
weekday : {0, 1, …, 6}

0: Mondays 1: Tuesdays 2: Wednesdays 3: Thursdays 4: Fridays 5: Saturdays 6: Sundays

startingMonth : The month in which fiscal years end. {1, 2, … 12}
variation : str

{“nearest”, “last”} for “LastOfMonth” or “NearestEndMonth”

Attributes

base Returns a copy of the calling offset object with n=1 and all other attributes equal.
freqstr  
kwds  
name  
nanos  
rule_code  

Methods

apply_index Vectorized apply of DateOffset to DatetimeIndex, raises NotImplentedError for offsets without a vectorized implementation.
rollback(dt) Roll provided date backward to next offset only if not on offset.
rollforward(dt) Roll provided date forward to next offset only if not on offset.
__call__  
apply  
copy  
get_rule_code_suffix  
get_year_end  
isAnchored  
onOffset  
Scroll To Top