Learn R Programming

XRSCC (version 0.2)

C_it: Iteration of c control chart for attributes

Description

Calculates the iteration i'th, for the control limits of c chart using the results obtained in c_gr and previous C_it iteration.

Usage

C_it(prev.results)

Value

in.control

The under control row list for the c chart

out.control

The out of control row list for the c chart

Iteraciones

The number of iterations, It is assumed to be the second or later

data.0

The original data frame or vector

data.1

The under control subset after iteration

bin

The binary values for out of control equal to one and under control equal to zero

Limites de Control Grafica c

The c chart control limits vector

Conclusion del proceso

The same results in a phrase as the bin values

Arguments

prev.results

Its a list of previous results obtained by the c_gr function. In other cases, needs more than one iteration, to obtain the true control limits, before take conclusions about the process.

Author

Erick Marroquin

References

Montgomery, D.C. (2005) Introduction to Statistical Quality Control, 5th ed. New York: John Wiley & Sons, ISBN 0-471-65631-3

See Also

p_gr, np_gr, u_gr, c_gr, P_it, NP_it, U_it

Examples

Run this code
data(clothes)
r1<-c_gr(clothes)
r2<-C_it(r1)
r3<-C_it(r2)

Run the code above in your browser using DataLab