View source: R/descriptive_functions.R
reference_range | R Documentation |
reference_range
estimates the reference range (reference interval) of a numerical variable.
reference_range(avg, std)
avg |
The arithmetic mean (a scalar numerical value). |
std |
The standard deviation (a scalar numerical value). |
The reference range assumes normality and represents the limits that would include 95 observations.
A data frame with the reference range limits.
x <- rnorm(100, 170, 8)
round(mean(x), 2)
round(sd(x), 2)
round(reference_range(mean(x), sd(x)), 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.