stats_std
Calculate the standard deviation of values in a list
stats_std(
values,
[ddof=1]
) -> NUMBER
Calculate the standard deviation of values in a list
Syntaxe
var std = stats_std([10, 5, 20, 15]);
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
values | yes | - | List of numbers | |
ddof | - | 1 | Delta Degrees of Freedom (0=population, 1=sample) |