loa {lvmisc} | R Documentation |
Limits of agreement
Description
Computes the Bland-Altman limits of agreement between the input vectors.
Usage
loa(actual, predicted, na.rm = FALSE)
Arguments
actual |
A numeric vector with the actual values. |
predicted |
A numeric vector with the predicted values. Each element in
this vector must be a prediction for the corresponding element in
|
na.rm |
A logical value indicating whether |
Value
A named list with the lower and upper limits of agreement values, respectively.
See Also
Examples
actual <- runif(10)
predicted <- runif(10)
loa(actual, predicted)
[Package lvmisc version 0.1.2 Index]