snowflake.snowpark.functions.atanh¶ snowflake.snowpark.functions.atanh(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.35.0/src/snowflake/snowpark/functions.py#L11071-L11083)¶ Returns the inverse(arc) hyperbolic tangent of the input value. Example: CopyExpand>>> df = session.create_dataframe([0.9051482536], schema=["a"]) >>> df.select(atanh(df["a"]).alias("result")).collect() [Row(RESULT=1.4999999997517164)] Show lessSee moreScroll to top