Learn R Programming

IQCC (version 1.0)

graphindI: Individual Phase I Hotelling Control Chart.

Description

Builds the individual phase I Hotelling control chart.

Usage

graphindI(T2, m, p)

Arguments

T2
The values of the T2 statistic. Shoul be a matrix.
m
The number of samples generated previously in function dataindI.
p
The dimension used previously in function dataindI.

Value

  • Return a control chart.

Details

It builds the Hotelling T2 control chart for multivariate normal data (individual observations : m samples of size n=1) used in retrospective / validation analysis (phase I) ; the control limits are based on a beta distribution, and the covariance matrix estimator is based on the sucessive difference method.

References

Montgomery, D.C.,(2008)."Introduction to Statistical Quality Control". Chapter 11. Wiley

See Also

graphindII,graphsubI,graphsubII

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)
# T2 is the matrix with the values of T2 statistic.
T2<-T2indI(estat,50)
graphindI(T2,50,2)

Run the code above in your browser using DataLab