xrs {qccrs} | R Documentation |
Xbar Control Charts Under Repetitive Sampling
Description
Calculates the Average Sample Number and Average Run Length as given in Aslam et al. (2014)
Usage
xrs(.c, .n, .k1, .k2)
## Default S3 method:
xrs(.c, .n, .k1, .k2)
Arguments
.c |
Size of the Shift |
.n |
Sample Size |
.k1 |
Positive Integer |
.k2 |
Positive Integer |
Value
Average Sample Number (ASN) and Average Run Length (ARL1) for xbar control charts under repetitive sampling
Author(s)
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)
References
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.
Examples
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))
[Package qccrs version 0.1.0 Index]