dataindII {IQCC} | R Documentation |
This function simulate a normal data set to be used in the phase II Hotelling control charts with individual observations.
dataindII(estat, p, delta = 0)
estat |
The values of the auxiliary statistics. Should be a list with a matrix with the means, mean of the means and mean of the standard deviation. |
delta |
A value to be added on the vector of means. |
p |
The dimension. |
To use this function it is necessary to have the information about the phase I given by the functions dataindI and estatauxind.
Return a matrix with the simulated data.
Daniela R. Recchia, Emanuel P. Barbosa
mu<-c(5.682,88.22) Sigma<-symMatrix(c(3.770,-5.495,13.53),2) datum<-dataindI(50,mu,Sigma,2) #estat is the list with the values of the auxiliary statistics. estat<-estatauxind(datum,50,2) datum2<-dataindII(estat,p=2)