| Library: | spc |
| See also: | spcewma1arl spcewma2c |
| Quantlet: | spcewma1c | |
| Description: | Computes the critical value of a one-sided EWMA chart for a given in-control Average Run Length. The data is normally distributed with variance 1. |
| Usage: | c = spcewma1c (ARL, lambda, zreflect, r) | |
| Input: | ||
| ARL | scalar representing a user-defined in-control Average Run Length of a one-sided EWMA chart | |
| lambda | scalar representing the smoothing parameter | |
| zreflect | scalar representing a pre-defined border. It is usually less than zero. | |
| r | scalar, matrix dimension of the approximating one-dimensional Markov chain | |
| Output: | ||
| c | scalar, critical value of a one-sided EWMA chart with user-defined in-control ARL | |
; Compute the critical value c of a one-sided EWMA chart with
; in-control ARL = 100, smoothing parameter lambda = 0.5
; and matrix dimension 50(of the approximating one-dimensional
; Markov chain):
library("spc")
c = spcewma1c(100, 0.5, -2, 50)
c
Contents of c [1,] 2.2594
library("spc")
c = spcewma1c(100, 0.5, -3, 50)
c
Contents of c [1,] 2.2587
library("spc")
c = spcewma1c(100, 0.5, -5, 50)
c
Contents of c [1,] 2.2586