loa: Limits of agreement

Description Usage Arguments Value See Also Examples

View source: R/accuracy_means.R

Description

Computes the Bland-Altman limits of agreement between the input vectors.

Usage

1
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 actual.

na.rm

A logical value indicating whether NA values should be stripped before the computation proceeds. Defaults to FALSE.

Value

A named list with the lower and upper limits of agreement values, respectively.

See Also

mean_error(), bias()

Examples

1
2
3
4
actual <- runif(10)
predicted <- runif(10)

loa(actual, predicted)

lvmisc documentation built on April 5, 2021, 5:06 p.m.