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
|
\name{cloud}
\alias{cloud}
\docType{data}
\title{Cloud point of a Liquid}
\description{
This data set contains the measurements concerning the
cloud point of a Liquid, from Draper and Smith (1969).
The cloud point is a measure of the degree of crystallization in a
stock.
}
\usage{data(cloud, package="robustbase")}
\format{
A data frame with 19 observations on the following 2 variables.
\describe{
\item{\code{Percentage}}{Percentage of I-8}
\item{\code{CloudPoint}}{Cloud point}
}
}
\source{
P. J. Rousseeuw and A. M. Leroy (1987)
\emph{Robust Regression and Outlier Detection};
Wiley, p.96, table 10.
}
\examples{
data(cloud)
summary(lm.cloud <- lm(CloudPoint ~., data=cloud))
%% summary(lts.cloud <- ltsReg(CloudPoint ~., data=cloud))
}
\keyword{datasets}
|