View source: R/accuracy_means.R
loa | R Documentation |
Computes the Bland-Altman limits of agreement between the input vectors.
loa(actual, predicted, na.rm = FALSE)
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 |
A named list with the lower and upper limits of agreement values, respectively.
mean_error()
,
bias()
actual <- runif(10)
predicted <- runif(10)
loa(actual, predicted)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.