pyspark.sql.functions.array_max¶
-
pyspark.sql.functions.
array_max
(col)[source]¶ Collection function: returns the maximum value of the array.
New in version 2.4.0.
- Parameters
- col
Column
or str name of column or expression
- col
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)]