summary.spc {qAnalyst} | R Documentation |
summary.spc
implements generic summary method on spc object. summary.spc prints general statistics, the chart elements coordinates and performed test details.
## S3 method for class 'spc' summary(object, ...)
object |
an object of class spc |
... |
furter arguments to be added |
summary.spc function extracts information from the lists embedded internally in the SPC object given.
This function does not return any value.
Default printed informations are general statistics.
Giorgio Spedicato
Final user function
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)