npqcd | R Documentation |
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)
x |
a matrix or data-frame or array which it should contain data. Dimension has to be the same as that of the observations. |
G |
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. |
data.name |
a string that specifies the title displayed on the plots. If not provided it is taken from the name of the object x. |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.