bias: Bias

View source: R/accuracy_means.R

biasR Documentation

Bias

Description

Computes the bias (mean error) between the input vectors.

Usage

bias(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 double scalar with the bias value.

See Also

mean_error(), loa()

Examples

actual <- runif(10)
predicted <- runif(10)

bias(actual, predicted)

lvmisc documentation built on June 22, 2024, 12:18 p.m.