npcrs1 {qccrs} | R Documentation |
NP Control Charts under Repetitive Sampling with single positive integer.
Description
Calculates Average Sample Numbers (ASN), Average Run Length (ARL1) and value of k for NP control charts under repetitive sampling as given in Aslam et al.(2014)
Usage
## Default S3 method:
npcrs1(.n, .p0, .f, .ssize = NULL, .k = NULL,
.kr = NULL)
Arguments
.n |
Sample Size |
.p0 |
probability that process is in control |
.f |
Size of the Shift |
.ssize |
Number of samples with replacement at each iteration |
.k |
Positive Constant |
.kr |
Random Positive Constant |
Value
ARL0, ARL1 and K
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. 13(1):101-106.
Examples
library(magrittr)
npcrs1(
.n = 60
, .p0 = 0.10
, .f = 0.10
, .k = 2.6432
)
npcrs1(
.n = 60
, .p0 = 0.10
, .f = 0.10
, .ssize = 1000
, .kr = 4
)
[Package qccrs version 0.1.0 Index]