snowflake.snowpark.functions.acosh¶
- snowflake.snowpark.functions.acosh(e: Union[Column, str]) Column [source] (https://github.com/snowflakedb/snowpark-python/blob/v1.30.0/snowpark-python/src/snowflake/snowpark/functions.py#L10897-L10909)¶
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)]