pyspark.sql.functions.hour

pyspark.sql.functions.hour(col)[source]

Extract the hours of a given date as integer.

New in version 1.5.0.

Examples

>>> df = spark.createDataFrame([('2015-04-08 13:08:15',)], ['ts'])
>>> df.select(hour('ts').alias('hour')).collect()
[Row(hour=13)]