pyspark.sql.functions.dayofyear¶
- 
pyspark.sql.functions.dayofyear(col: ColumnOrName) → pyspark.sql.column.Column[source]¶ Extract the day of the year of a given date/timestamp as integer.
New in version 1.5.0.
Changed in version 3.4.0: Supports Spark Connect.
- Parameters
 - col
Columnor str target date/timestamp column to work on.
- col
 - Returns
 Columnday of the year for given date/timestamp as integer.
Examples
>>> df = spark.createDataFrame([('2015-04-08',)], ['dt']) >>> df.select(dayofyear('dt').alias('day')).collect() [Row(day=98)]