snowflake.snowpark.functions.log10¶ snowflake.snowpark.functions.log10(x: Union[Column, str, int, float]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.44.0/src/snowflake/snowpark/functions.py#L3083-L3099)¶ Returns the base-10 logarithm of x. Example: CopyExpand>>> df = session.create_dataframe([1, 10], schema=["a"]) >>> df.select(log10(df["a"]).alias("log10")).collect() [Row(LOG10=0.0), Row(LOG10=1.0)] Show lessSee moreScroll to top