woom.util.WoomDate.is_year_end# WoomDate.is_year_end# Return True if date is last day of the year. Return type: bool See also Timestamp.is_year_startSimilar property indicating the start of the year. Examples >>> ts = pd.Timestamp(2020, 3, 14) >>> ts.is_year_end False >>> ts = pd.Timestamp(2020, 12, 31) >>> ts.is_year_end True