data.r {MonoInc}R Documentation

Data range

Description

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

Usage

data("data.r")

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

Details

Range data needed for the simulated data.

Source

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

Examples

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)

[Package MonoInc version 1.1 Index]