pyspark.sql.functions.ln#
- pyspark.sql.functions.ln(col)[source]#
Returns the natural logarithm of the argument.
New in version 3.5.0.
- Parameters
- col
Column
or str a column to calculate logariphm for.
- col
- Returns
Column
natural logarithm of given value.
Examples
>>> df = spark.createDataFrame([(4,)], ['a']) >>> df.select(ln('a')).show() +------------------+ | ln(a)| +------------------+ |1.3862943611198906| +------------------+