You are viewing documentation about an older version (1.27.0). View latest version

snowflake.snowpark.functions.atanh

snowflake.snowpark.functions.atanh(e: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.27.0/snowpark-python/src/snowflake/snowpark/functions.py#L10804-L10816)

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

Example:

>>> df = session.create_dataframe([0.9051482536], schema=["a"])
>>> df.select(atanh(df["a"]).alias("result")).collect()
[Row(RESULT=1.4999999997517164)]
Copy
Language: English