The data frame Kinder
contains the height in inches and weight in
pounds of 20 children from a kindergarten class. Data are used in Example
12.17.
A data frame with 20 observations on the following 2 variables:
height in inches of child
weight in pounds of child
Ugarte, M. D., Militino, A. F., and Arnholt, A. T. (2008) Probability and Statistics with R. Chapman & Hall/CRC.
# Figure 12.10 with(data = Kinder, plot(wt, ht))# Trellis Approach xyplot(ht ~ wt, data = Kinder)