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
|
\name{Oxboys}
\alias{Oxboys}
\docType{data}
\title{Heights of Boys in Oxford}
\description{
The \code{Oxboys} data frame has 234 rows and 4 columns.
}
\format{
This data frame contains the following columns:
\describe{
\item{Subject}{
an ordered factor giving a unique identifier for each boy in
the experiment
}
\item{age}{
a numeric vector giving the standardized age (dimensionless)
}
\item{height}{
a numeric vector giving the height of the boy (cm)
}
\item{Occasion}{
an ordered factor - the result of converting \code{age} from a
continuous variable to a count so these slightly unbalanced
data can be analyzed as balanced.
}
}
}
\details{
These data are described in Goldstein (1987) as data on the
height of a selection of boys from Oxford, England versus a
standardized age.
}
\source{
Pinheiro, J. C. and Bates, D. M. (2000)
\emph{Mixed-Effects Models in S and S-PLUS},
Springer, New York. (Appendix A.19)
}
\examples{
data(Oxboys)
}
\keyword{datasets}
|