powered by
Computes the Bland-Altman limits of agreement between the input vectors.
loa(actual, predicted, na.rm = FALSE)
A named list with the lower and upper limits of agreement values, respectively.
A numeric vector with the actual values.
A numeric vector with the predicted values. Each element in this vector must be a prediction for the corresponding element in actual.
actual
A logical value indicating whether NA values should be stripped before the computation proceeds. Defaults to FALSE.
NA
FALSE
mean_error(), bias()
mean_error()
bias()
actual <- runif(10) predicted <- runif(10) loa(actual, predicted)
Run the code above in your browser using DataLab