Learn R Programming

IQCC (version 1.0)

estatauxind: 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.

Value

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

Details

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

Examples

Run this code
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)

Run the code above in your browser using DataLab