Learn R Programming

MonoInc (version 1.1)

decData.r: Data range(decreasing)

Description

Chart of measurements of children aged 0 to 120 months

Usage

data("decData.r")

Arguments

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

Run this code
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)

Run the code above in your browser using DataLab