pyspark.sql.functions.max¶
-
pyspark.sql.functions.
max
(col: ColumnOrName) → pyspark.sql.column.Column[source]¶ Aggregate function: returns the maximum value of the expression in a group.
New in version 1.3.0.
Changed in version 3.4.0: Supports Spark Connect.
Examples
>>> df = spark.range(10) >>> df.select(max(col("id"))).show() +-------+ |max(id)| +-------+ | 9| +-------+