pyspark.sql.functions.
array_max
Collection function: returns the maximum value of the array.
New in version 2.4.0.
Column
name of column or expression
Examples
>>> df = spark.createDataFrame([([2, 1, 3],), ([None, 10, -1],)], ['data']) >>> df.select(array_max(df.data).alias('max')).collect() [Row(max=3), Row(max=10)]