https://github.com/cran/IQCC
Tip revision: 015c96430f6bddf3c9b4b20d878ceae380a023be authored by Emanuel P. Barbosa on 21 September 2009, 00:00:00 UTC
version 1.0
version 1.0
Tip revision: 015c964
xbarII.Rd
\name{xbarII}
\alias{xbarII}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{ X-bar Shewhart Control Chart for phase II. }
\description{
Builds the x-bar control chart for phase II.
}
\usage{
xbarII(x, x2bar, sigma, sizes)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{x}{ The data to be plotted. }
\item{x2bar}{ The mean of means. }
\item{sigma}{ The standar deviation of the data. }
\item{sizes}{ A value or a vector of values specifying the sample sizes associated with each group. }
}
\details{
To use this function it is necessary to have the output given by the function XbarI.
}
\value{
Return a x-bar control chart for phase II.
}
\author{ Daniela R. Recchia, Emanuel P. Barbosa }
\seealso{ \link{xbarI} }
\examples{
data(pistonrings)
xI<-xbarI(pistonrings[1:25,])
xbarII(pistonrings[26:40,],xI[[1]],xI[[2]])
}