1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
\name{milk}
\alias{milk}
\docType{data}
\title{Daudin's Milk Composition Data}
\description{
Daudin et al.(1988) give 8 readings on the composition of 86
containers of milk. They speak about 85 observations, but this
can be explained with the fact that observations 63 and 64 are
identical (as noted by Rocke (1996)).
The data set was used for analysing the stability of principal
component analysis by the bootstrap method. In the same context, but
using high breakdown point robust PCA, these data were analysed by
Todorov et al. (1994). Atkinson (1994) used these data for ilustration
of the forward search algorithm for identifying of multiple outliers.
}
\usage{data(milk, package="robustbase")}
\format{
A data frame with 86 observations on the following 8 variables, all
but the first measure units in \emph{grams / liter}.
\describe{
\item{\code{X1}}{density}
\item{\code{X2}}{fat content}
\item{\code{X3}}{protein content}
\item{\code{X4}}{casein content}
\item{\code{X5}}{cheese dry substance measured in the factory}
\item{\code{X6}}{cheese dry substance measured in the laboratory}
\item{\code{X7}}{milk dry substance}
\item{\code{X8}}{cheese product}
}
}
\source{
Daudin, J.J. Duby, C. and Trecourt, P. (1988)
Stability of Principal Component Analysis Studied by the Bootstrap Method;
\emph{Statistics} \bold{19}, 241--258.
}
\references{
Todorov, V., Neyko, N., Neytchev, P. (1994)
Stability of High Breakdown Point Robust PCA,
in \emph{Short Communications, COMPSTAT'94}; Physica Verlag, Heidelberg.
Atkinson, A.C. (1994)
Fast Very Robust Methods for the Detection of Multiple Outliers.
\emph{J. Amer. Statist. Assoc.} \bold{89} 1329--1339.
Rocke, D. M. and Woodruff, D. L. (1996)
Identification of Outliers in Multivariate Data;
\emph{J. Amer. Statist. Assoc.} \bold{91} (435), 1047--1061.
}
\examples{
data(milk)
(c.milk <- covMcd(milk))
summarizeRobWeights(c.milk $ mcd.wt)# 19..20 outliers
umilk <- unique(milk) # dropping obs.64 (== obs.63)
summary(cumilk <- covMcd(umilk, nsamp = "deterministic")) # 20 outliers
%%not yet ## the best 'crit' we've seen was
}
\keyword{datasets}
|