pyspark.pandas.DatetimeIndex.is_leap_year

property DatetimeIndex.is_leap_year

Boolean indicator if the date belongs to a leap year.

A leap year is a year, which has 366 days (instead of 365) including 29th of February as an intercalary day. Leap years are years which are multiples of four with the exception of years divisible by 100 but not by 400.

Returns
Index

Booleans indicating if dates belong to a leap year.

Examples

>>> idx = ps.date_range("2012-01-01", "2015-01-01", freq="Y")
>>> idx.is_leap_year
Index([True, False, False], dtype='object')