summary.spc {qAnalyst} | R Documentation |
Generic summary method for spc objects
Description
summary.spc
implements generic summary method on spc object. summary.spc prints general statistics, the chart elements coordinates and performed test details.
Usage
## S3 method for class 'spc'
summary(object, ...)
Arguments
object |
an object of class spc |
... |
furter arguments to be added |
Details
summary.spc function extracts information from the lists embedded internally in the SPC object given.
Value
This function does not return any value.
Note
Default printed informations are general statistics.
Author(s)
Giorgio Spedicato
References
Final user function
See Also
Examples
set.seed(100)
x=c(rnorm(30,m=10,s=1), rnorm(30,m=12,s=1), rnorm(30,m=10,s=4))
sg=sort(rep(1:30,3))
#1 LA + SEMPLICE
go=spc(x=x,sg=sg,type="xbar", testType=2, k=0,nSigma=0, p=0)
plot.spc(go)
summary.spc(go)
rm(go)
[Package qAnalyst version 0.6.4 Index]