pandas.tseries.offsets.Easter#
- class pandas.tseries.offsets.Easter#
DateOffset for the Easter holiday using logic defined in dateutil.
Right now uses the revised method which is valid in years 1583-4099.
- Parameters:
- nint, default 1
The number of years represented.
- normalizebool, default False
Normalize start/end dates to midnight before generating date range.
- methodint, default 3
The method used to calculate the date of Easter. Valid options are: - 1 (EASTER_JULIAN): Original calculation in Julian calendar - 2 (EASTER_ORTHODOX): Original method, date converted to Gregorian calendar - 3 (EASTER_WESTERN): Revised method, in Gregorian calendar These constants are defined in the dateutil.easter module.
Attributes
method
See also
DateOffsetStandard kind of date increment.
Examples
>>> ts = pd.Timestamp(2022, 1, 1) >>> ts + pd.offsets.Easter() Timestamp('2022-04-17 00:00:00')