PLAYGROUND (experimental)

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

NameTypeRequiredDefaultDescription
valuesyes-List of numbers
ddof-1Delta Degrees of Freedom (0=population, 1=sample)