mR_UCL {ggQC} | R Documentation |
Calculates the mean one-point moving range UCL used when constructing a moving-range chart.
mR_UCL(y, na.rm = FALSE, ...)
y |
Vector of values |
na.rm |
a logical value indicating whether NA values should be stripped before the computation proceeds. |
... |
further arguments passed to or from other methods. |
A number; mean one-point moving range UCL.
set.seed(5555)
values <- rnorm(n = 100, mean = 25, sd = 1)
mR_UCL(values)