ste ( seq -- x )
Statistics
Prev:std ( seq -- x )
Next:var ( seq -- x )


Vocabulary
math.statistics

Inputs and outputs
seqa sequence
xa non-negative real number


Word description
Computes the standard error of the mean for seq. It's defined as the standard deviation divided by the square root of the length of the sequence, and measures uncertainty associated with the estimate of the mean.

Examples
USING: math.statistics prettyprint ; { -2 2 } ste .
2.0


See also
population-ste, sample-ste

Definition
IN: math.statistics

ALIAS: ste sample-ste inline