polars.Series.dt.ordinal_day#
- Series.dt.ordinal_day() Series [source]#
Extract ordinal day from underlying date representation.
Applies to Date and Datetime columns.
Returns the day of year starting from 1. The return value ranges from 1 to 366. (The last day of year differs by years.)
- Returns:
- Series
Series of data type
UInt32
.
Examples
>>> from datetime import date >>> s = pl.date_range( ... date(2001, 1, 1), date(2001, 3, 1), interval="1mo", eager=True ... ) >>> s.dt.ordinal_day() shape: (3,) Series: 'date' [u32] [ 1 32 60 ]