modin.pandas.Series.dt.is_year_start¶
- Series.dt.is_year_start[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/.tox/docs/lib/python3.9/site-packages/modin/pandas/series_utils.py#L686-L688)¶
Indicate whether the date is the first day of a 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_endSimilar property indicating the last day of the year.
Examples
This method is available on Series with datetime values under the .dt accessor, and directly on DatetimeIndex.