error: Error

Description Usage Arguments Value See Also Examples

View source: R/accuracy.R

Description

Computes the element-wise error between the input vectors.

Usage

1
error(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 error values.

See Also

error_pct(), error_abs(), error_abs_pct(), error_sqr().

Examples

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

error(actual, predicted)

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