https://github.com/cran/IQCC
Raw File
Tip revision: 5c6e6dea621fd5b486441c5e649098ad5a6549e6 authored by Flavio Barros on 15 November 2017, 21:16:12 UTC
version 0.7
Tip revision: 5c6e6de
data.2.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data.2.R
\name{data.2}
\alias{data.2}
\title{Hotelling Control Chart Phase II simulated data.}
\usage{
data.2(estat, n, delta = 0, p)
}
\arguments{
\item{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.}

\item{n}{The size of each sample. If they are individual observations, use n
= 1.}

\item{delta}{A value to be added on the vector of means.}

\item{p}{The dimension.}
}
\value{
Return an array with the simulated data.
}
\description{
This function simulate a normal data set to be used in the phase II
Hotelling control charts.
}
\details{
To use this function it is necessary to have the information about the phase
I given by the functions data.1 and stats.
}
\examples{

mu <- c(5.682, 88.22)
Sigma <- symMatrix(c(3.770, -5.495, 13.53), 2)
datum <- data.1(20, 10, mu, Sigma)
# estat is the list with the values of the auxiliary statistics.
estat <- stats(datum, 20, 10, 2)
datum2 <- data.2(estat, 10, p = 2)

}
\seealso{
\link{data.1}
}
\author{
Daniela R. Recchia, Emanuel P. Barbosa
}
back to top