error_abs_pct: Absolute percent error

View source: R/accuracy.R

error_abs_pctR Documentation

Absolute percent error

Description

Computes the element-wise absolute percent errors between the input vectors.

Usage

error_abs_pct(actual, predicted)

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.

Value

Returns a double vector with the element-wise absolute percent error values.

A vector of the class lvmisc_percent with the element-wise absolute percent error values.

See Also

error(), error_pct(), error_abs(), error_sqr().

Examples

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

error_abs_pct(actual, predicted)

verasls/lvmisc documentation built on Feb. 12, 2024, 8:21 a.m.