state.control {qcr} | R Documentation |
Univariante process state
Description
This function removes observations from the sample which violates the rules of a process under control
Usage
state.control(x)
Arguments
x |
Object qcs (Quality Control Statistical) |
Examples
##
## Continuous data
##
library(qcr)
data(pistonrings)
str(pistonrings)
pistonrings.qcd<-qcd(pistonrings)
class(pistonrings.qcd)
res.qcs <- qcs.xbar(pistonrings.qcd)
plot(res.qcs,title="Control Chart Xbar for pistonrings I")
summary(res.qcs)
res.qcd <- state.control(res.qcs)
res.qcs <- qcs.xbar(res.qcd)
plot(res.qcs,title="Control Chart Xbar for pistonrings II")
summary(res.qcs)
res.qcd <- state.control(res.qcs)
res.qcs <- qcs.xbar(res.qcd)
plot(res.qcs,title="Control Chart Xbar for pistonrings III")
summary(res.qcs)
[Package qcr version 1.4 Index]