Learn R Programming

lvmisc (version 0.1.2)

error: Error

Description

Computes the element-wise error between the input vectors.

Usage

error(actual, predicted)

Value

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

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.

See Also

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

Examples

Run this code
actual <- runif(10)
predicted <- runif(10)

error(actual, predicted)

Run the code above in your browser using DataLab