snowflake.snowpark.functions.asinh¶ snowflake.snowpark.functions.asinh(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/functions.py#L11485-L11497)¶ Returns the inverse(arc) hyperbolic sine of the input value. Example: CopyExpand>>> df = session.create_dataframe([2.129279455], schema=["a"]) >>> df.select(asinh(df["a"]).alias("asinh")).collect() [Row(ASINH=1.4999999999596934)] Show lessSee moreScroll to top