pandas.tseries.offsets.QuarterEnd.is_on_offset#
- QuarterEnd.is_on_offset(dt)#
Return boolean whether a timestamp intersects with this frequency.
This method checks if the given datetime falls on a quarter boundary as defined by the offset’s
startingMonthand day option.- Parameters:
- dtdatetime
Timestamp to check intersections with frequency.
- Returns:
- bool
True if the timestamp is on the offset, False otherwise.
See also
QuarterOffsetParent class with quarterly offset logic.
Examples
>>> ts = pd.Timestamp(2022, 1, 1) >>> freq = pd.offsets.BQuarterBegin() >>> freq.is_on_offset(ts) False >>> ts = pd.Timestamp(2022, 3, 1) >>> freq.is_on_offset(ts) True