mR: Mean One-Point Moving Range

Description Usage Arguments Value Examples

View source: R/02_QC_FUNs.R

Description

Calculates the mean one-point moving range used when constructing a moving-range chart.

Usage

1
mR(y, na.rm = TRUE, ...)

Arguments

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.

Value

A number; mean one-point moving range.

Examples

1
2
3
set.seed(5555)
values <- rnorm(n = 100, mean = 25, sd = 1)
mR(values)

Example output

[1] 0.9614964

ggQC documentation built on May 1, 2019, 10:26 p.m.