pyspark.sql.functions.
asinh
Computes inverse hyperbolic sine of the input column.
New in version 3.1.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(asinh(col("id"))).show() +---------+ |ASINH(id)| +---------+ | 0.0| +---------+