snowflake.snowpark.functions.atanh¶
- snowflake.snowpark.functions.atanh(e: Union[Column, str]) Column [source]¶
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)]