xrs {qccrs} | R Documentation |
Calculates the Average Sample Number and Average Run Length as given in Aslam et al. (2014)
xrs(.c, .n, .k1, .k2)
## Default S3 method:
xrs(.c, .n, .k1, .k2)
.c |
Size of the Shift |
.n |
Sample Size |
.k1 |
Positive Integer |
.k2 |
Positive Integer |
Average Sample Number (ASN) and Average Run Length (ARL1) for xbar control charts under repetitive sampling
Muhammad Yaseen (myaseen208@gmail.com)
Muhammad Aslam (aslam_ravian@hotmail.com)
Sami Ullah (samiullahuos@gmail.com)
Muhammad Azam (mazam@uvas.edu.pk)
Chi-Hyuck Jun (chjun@postech.ac.kr)
Muhammad Kashif (mkashif@uaf.edu.pk)
Aslam, M., Azam, M. and Jun, C. (2014). New Attributes and Variables Control Charts under Repetitive Sampling. Industrial Engineering & Management Systems. 1(13):101-106.
library(magrittr)
library(purrr)
c(0.0, 0.1, 0.20, 0.3, 0.4, 0.5, 1.0, 1.5, 2, 3) %>%
purrr::map(
function(x)
xrs(
.c = x
, .n = 10
, .k1 = 2.9301
, .k2 = 0.9825))