Skip to content

Compute the base-10 logarithm of elements

Source code

Description

Compute the base-10 logarithm of elements

Usage

<Expr>$log10()

Value

Expr

Examples

library(polars)

pl$DataFrame(a = c(1, 2, 3, exp(1)))$
  with_columns(log10 = pl$col("a")$log10())
#> shape: (4, 2)
#> ┌──────────┬──────────┐
#> │ a        ┆ log10    │
#> │ ---      ┆ ---      │
#> │ f64      ┆ f64      │
#> ╞══════════╪══════════╡
#> │ 1.0      ┆ 0.0      │
#> │ 2.0      ┆ 0.30103  │
#> │ 3.0      ┆ 0.477121 │
#> │ 2.718282 ┆ 0.434294 │
#> └──────────┴──────────┘