snowflake.snowpark.functions.cot¶
- snowflake.snowpark.functions.cot(expr: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.45.0/src/snowflake/snowpark/_functions/scalar_functions.py#L4583-L4601)¶
Computes the cotangent of the input column. The input should be expressed in radians.
- Parameters:
expr (ColumnOrName) – The input column or column name containing values in radians.
- Returns:
A column containing the cotangent values.
- Return type:
- Examples::