woom.util.WoomDate.is_quarter_end#
- WoomDate.is_quarter_end#
Check if date is last day of the quarter.
- Returns:
True if date is last day of the quarter.
- Return type:
See also
Timestamp.is_quarter_startSimilar property indicating the quarter start.
Timestamp.quarterReturn the quarter of the date.
Examples
>>> ts = pd.Timestamp(2020, 3, 14) >>> ts.is_quarter_end False
>>> ts = pd.Timestamp(2020, 3, 31) >>> ts.is_quarter_end True