Learn R Programming

PASWR (version 1.1)

Kinder: Kindergarten Class

Description

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.

Usage

Kinder

Arguments

Format

A data frame with 20 observations on the following 2 variables:

ht

height in inches of child

wt

weight in pounds of child

Examples

Run this code
# NOT RUN {
# Figure 12.10
with(data = Kinder, 
plot(wt, ht))
# Trellis Approach
xyplot(ht~wt, data = Kinder)
# }

Run the code above in your browser using DataLab