Learn R Programming

MonoInc (version 1.1)

data.r: Data range

Description

CDC growth chart of heights of female children aged 0 to 120 months.

Usage

data("data.r")

Arguments

Format

A data frame with 121 observations on the following 3 variables.
Age
a numeric vector
Per_5
a numeric vector
Per_95
a numeric vector

Source

http://www.cdc.gov/growthcharts/clinical_charts.htm

Details

Range data needed for the simulated data.

Examples

Run this code
data(data.r)
## plot Range boundary lines
tol <- 3
plot(data.r$Age, data.r$Per_5, type="l", lty=2, col=2)
lines(data.r$Age, data.r$Per_95, type="l", lty=2, col=2)
lines(data.r$Age, data.r$Per_5 - tol, type="l", lty=2, col=4)
lines(data.r$Age, data.r$Per_95 + tol, type="l", lty=2, col=4)

Run the code above in your browser using DataLab