snowflake.snowpark.functions.sinh¶ snowflake.snowpark.functions.sinh(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.6.1/src/snowflake/snowpark/functions.py#L1772-L1782)¶ Computes the hyperbolic sine of its argument. Example::CopyExpand>>> from snowflake.snowpark.types import DecimalType >>> df = session.generator(seq1(0), rowcount=3).select(sinh(seq1(0)).cast(DecimalType(scale=4))) >>> df.collect() [Row(CAST (SINH(SEQ1(0)) AS NUMBER(38, 4))=Decimal('0.0000')), Row(CAST (SINH(SEQ1(0)) AS NUMBER(38, 4))=Decimal('1.1752')), Row(CAST (SINH(SEQ1(0)) AS NUMBER(38, 4))=Decimal('3.6269'))] Show lessSee moreScroll to top