powered by
It creates an object of class 'npqcd' to perform statistical quality control. This object is used to plot Non Parametric Multivariate Control Charts.
npqcd(x, G = NULL, data.name = NULL)
a matrix or data-frame or array which it should contain data. Dimension has to be the same as that of the observations.
The x as a matrix, data frame or list. If it is a matrix or data frame, then each row is viewed as one multivariate observation.
a string that specifies the title displayed on the plots. If not provided it is taken from the name of the object x.
# NOT RUN { library(qcr) set.seed(356) data <- matrix(rnorm(999), nc = 3) x <-rexp(999,0.5) x <-matrix(x,ncol=3) data.npqcd <- npqcd(data,x) str(data.npqcd) # }
Run the code above in your browser using DataLab