data.r: Data range

Description Usage Format Details Source Examples

Description

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

Usage

1
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

1
2
3
4
5
6
7
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)

MonoInc documentation built on May 2, 2019, 8:18 a.m.