std-ddof ( seq n -- x ) (original) (raw)

std-ddof ( seq n -- x )
Statistics

Prev: sample-var ( seq -- x )
Next: ste-ddof ( seq n -- x )

Vocabulary
math.statistics

Inputs

seq an object
n an object

Outputs

x an object

See also
population-std, sample-std

Definition

USING: math.functions ;

IN: math.statistics

: std-ddof ( seq n -- x ) var-ddof sqrt ; inline