snowflake.snowpark.functions.cosh¶ snowflake.snowpark.functions.cosh(e: ColumnOrName) → Column[source]¶ Computes the hyperbolic cosine of its argument. Example CopyExpand>>> from snowflake.snowpark.types import DecimalType >>> df = session.create_dataframe([[0]], schema=["deg"]) >>> df.select(cosh(col("deg")).alias("result")).show() ------------ |"RESULT" | ------------ |1.0 | ------------ Show lessSee moreScroll to top