pyspark.sql.functions.
ceil
Computes the ceiling of the given value.
New in version 1.4.0.
Changed in version 3.4.0: Supports Spark Connect.
Column
target column to compute on.
the column for computed results.
Examples
>>> df = spark.range(1) >>> df.select(ceil(lit(-0.1))).show() +----------+ |CEIL(-0.1)| +----------+ | 0| +----------+