qcs.u | R Documentation |
This function is used to compute statistics required by the u chart.
qcs.u(x, ...)
## Default S3 method:
qcs.u(
x,
var.index = 1,
sample.index = 2,
covar.index = NULL,
covar.names = NULL,
data.name = NULL,
sizes = NULL,
center = NULL,
conf.nsigma = 3,
limits = NULL,
plot = FALSE,
...
)
## S3 method for class 'qcd'
qcs.u(x, center = NULL, conf.nsigma = 3, limits = NULL, plot = FALSE, ...)
x |
An object of class "qcd". |
... |
Arguments passed to or from methods. |
var.index |
A scalar with the column number corresponding to the observed data for the variable (the variable quality). Alternativelly can be a string with the name of the quality variable. |
sample.index |
A scalar with the column number corresponding to the index fo each group (sample). |
covar.index |
Optional. A scalar or numeric vector with the column number(s) corresponding to the covariate(s). Alternativelly it can be a character vector with the names of the covariates. |
covar.names |
Optional. A string or vector of strings indicating the names for the covariate columns. Only valid if there is more than one column of data. By default, takes the names from the original object. |
data.name |
A string specifying the name of the variable which appears on the plots. If not provided, it is taken from the object given as data. |
sizes |
Optional. A value or a vector of values specifying the sample sizes
associated with each group. For continuous data, the sample sizes are obtained
counting the non- |
center |
A value specifying the center of group statistics or the ”target” value of the process. |
conf.nsigma |
A numeric value used to compute control limits, specifying the
number of standard deviations (if |
limits |
A two-values vector specifying control limits. |
plot |
Logical value. If |
qcs
, qcd
data(pcmanufact)
attach(pcmanufact)
str(pcmanufact)
datos <- pcmanufact
datos$sample <- 1:length(datos$x)
str(datos)
sizes <- datos[,2]
datos.qcd <- qcd(data = datos, var.index = 1,sample.index = 2,
sizes = sizes, type.data = "atributte")
res.qcs <- qcs.u(datos.qcd)
summary(res.qcs)
plot(res.qcs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.