decData.r {MonoInc}R Documentation

Data range(decreasing)

Description

Chart of measurements of children aged 0 to 120 months

Usage

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

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)

[Package MonoInc version 1.1 Index]