robustRI {mcradds} | R Documentation |
Robust Method in Calculation of Reference Interval
Description
This robust method is used to calculate the reference interval on small sample size (below to 120 observations).
Usage
robustRI(x, ind = 1:length(x), conf.level = 0.95, tol = 1e-06)
Arguments
x |
( |
ind |
( |
conf.level |
( |
tol |
( |
Value
a vector of robust reference interval
References
This robust algorithm is referring to CLSI document EP28A3.
Examples
# This example data is taken from EP28A3 Appendix B. to ensure the result is in accordance.
x <- c(8.9, 9.2, rep(9.4, 2), rep(9.5, 3), rep(9.6, 4), rep(9.7, 5), 9.8, rep(9.9, 2), 10.2)
robustRI(x)
[Package mcradds version 1.1.0 Index]