snowflake.snowpark.functions.asinh

snowflake.snowpark.functions.asinh(e: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.30.0/snowpark-python/src/snowflake/snowpark/functions.py#L10912-L10924)

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
Language: English