Compute the standard deviation
Description
Compute the standard deviation
Usage
<Expr>$std(ddof = 1)
Arguments
ddof
|
"Delta Degrees of Freedom": the divisor used in the calculation is
N - ddof , where N represents the number of
elements. By default ddof is 1.
|
Value
A polars expression
Examples
#> shape: (1, 1)
#> ┌──────────┐
#> │ a │
#> │ --- │
#> │ f64 │
#> ╞══════════╡
#> │ 2.217356 │
#> └──────────┘