estatauxind {IQCC}R Documentation

Auxiliary statistics for the multivariate control charts with individual observations.

Description

This function calculate the auxiliary statistics necessary to build the control chart reference lines.

Usage

estatauxind(datum, m, p)

Arguments

datum The data set. Should be a matrix.
m The number of sample generated previously in function dataindI.
p The dimension used previously in function dataindI.

Details

To use this function it is necessary to have the information about the dataindI.

Value

Return the values of the three statistics: a matrix with the means, mean of the means and mean of the standard deviation.

Author(s)

Daniela R. Recchia, Emanuel P. Barbosa

Examples

mu<-c(5.682,88.22)
Sigma<-symMatrix(c(3.770,-5.495,13.53),2)
datum<-dataindI(50,mu,Sigma,2)
estat<-estatauxind(datum,50,2)

[Package IQCC version 1.0 Index]