decData.r: Data range(decreasing)

Description Usage Format Details Examples

Description

Chart of measurements of children aged 0 to 120 months

Usage

1
data("decData.r")

Format

A data frame with 121 observations on the following 3 variables.

Age

a numeric vector

L.bound

a numeric vector

U.bound

a numeric vector

Details

Range data needed for the simulated decreasing data.

Examples

1
2
3
4
5
6
7
8
data(decData.r)

## plot Range boundary lines
tol <- 3
plot(decData.r[,1], decData.r[,2], type="l", lty=2, col=2)
lines(decData.r[,1], decData.r[,3], type="l", lty=2, col=2)
lines(decData.r[,1], decData.r[,2] - tol, type="l", lty=2, col=4)
lines(decData.r[,1], decData.r[,3] + tol, type="l", lty=2, col=4)

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