d_2 {CC} | R Documentation |
The sample range R
is a biased estimator for the
population standard deviation. For a normally distributed sample of
size n
, R/d2(n)
is unbiased.
d_2(n)
n |
the sample size |
a numeric value representing the multiplier to render R unbiased
W.J. Braun
Montgomery, D.C. (2000) Introduction to Statistical Quality Control, Wiley
x <- rnorm(10, sd = 3)
R <- diff(range(x))
R/d_2(10) # expected value of this is 3