Command Reference : Function Reference : Function Reference: C
  
 
@cumstdevs
Cumulative sample standard deviations (sample – d.f. adjusted) of a series.
Increasing samples calculation of the square root of the sample (d.f. adjusted) Pearson product moment variance.
Syntax: @cumstdevs(x, [s])
x: series
s: (optional) sample string or object
Return: series
The sample standard deviation is calculated for each observation as
where is the mean of over the first observations.
This function is panel aware.
Examples
series x = @nrnd
group g @cumstdev(x) @cumstdevs(x) @cumstdevp(x)
g.line
plots @cumstdev(x), @cumstdevs(x), and @cumstdevp(x) together. Note that @cumstdev(x) and @cumstdevp(x) are equivalent. All three series converge in probability to 1.
Cross-references
See also @cumstdev, @cumstdevp, @cumvar, @cumvars, and @cumvarp.
For the backward variant of this function, see @cumbstdevs