modin.pandas.Series.dt.is_year_end¶
- Series.dt.is_year_end[source]¶
Indicate whether the date is the last day of the year.
- Returns:
The same type as the original data with boolean values. Series will have the same name and index. DatetimeIndex will have the same name.
- Return type:
See also
is_year_startSimilar property indicating the start of the year.
Examples
This method is available on Series with datetime values under the .dt accessor, and directly on DatetimeIndex.