Get mean value
Description
Get mean value
Usage
<Expr>$mean()
Value
A polars expression
Examples
#> shape: (4, 2)
#> ┌──────┬──────────┐
#> │ x ┆ mean │
#> │ --- ┆ --- │
#> │ f64 ┆ f64 │
#> ╞══════╪══════════╡
#> │ 1.0 ┆ 2.666667 │
#> │ 3.0 ┆ 2.666667 │
#> │ 4.0 ┆ 2.666667 │
#> │ null ┆ 2.666667 │
#> └──────┴──────────┘