snowflake.snowpark.functions.acosh¶

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

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

Example:

>>> df = session.create_dataframe([2.352409615], schema=["a"])
>>> df.select(acosh("a").as_("acosh")).collect()
[Row(ACOSH=1.4999999998857607)]
Copy