snowflake.snowpark.functions.asinh¶

snowflake.snowpark.functions.asinh(e: Union[Column, str]) → Column[source]¶

Returns the inverse(arc) hyperbolic sine of the input value.

Example:

>>> df = session.create_dataframe([2.129279455], schema=["a"])
>>> df.select(asinh(df["a"]).alias("asinh")).collect()
[Row(ASINH=1.4999999999596934)]
Copy