error_pct: Percent error

View source: R/accuracy.R

error_pctR Documentation

Percent error

Description

Computes the element-wise percent error between the input vectors.

Usage

error_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 percent error values.

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

See Also

error(), error_abs(), error_abs_pct(), error_sqr().

Examples

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

error_pct(actual, predicted)

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