Learn R Programming

pubh (version 2.0.0)

reference_range: Reference range (reference interval).

Description

reference_range estimates the reference range (reference interval) of a numerical variable.

Usage

reference_range(avg, std)

Value

A data frame with the reference range limits.

Arguments

avg

The arithmetic mean (a scalar numerical value).

std

The standard deviation (a scalar numerical value).

Details

The reference range assumes normality and represents the limits that would include 95 observations.

Examples

Run this code
x <- rnorm(100, 170, 8)
round(mean(x), 2)
round(sd(x), 2)

round(reference_range(mean(x), sd(x)), 2)

Run the code above in your browser using DataLab