snowflake.snowpark.functions.acosh¶ snowflake.snowpark.functions.acosh(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L11470-L11482)¶ Returns the inverse(arc) hyperbolic cosine of the input value. Example: CopyExpand>>> df = session.create_dataframe([2.352409615], schema=["a"]) >>> df.select(acosh("a").as_("acosh")).collect() [Row(ACOSH=1.4999999998857607)] Show lessSee moreScroll to top