pyspark.sql.functions.
sqrt
Computes the square root of the specified float value.
New in version 1.3.0.
Changed in version 3.4.0: Supports Spark Connect.
Column
target column to compute on.
column for computed results.
Examples
>>> df = spark.range(1) >>> df.select(sqrt(lit(4))).show() +-------+ |SQRT(4)| +-------+ | 2.0| +-------+