Learn R Programming

lvmisc (version 0.1.2)

mean_error_sqr: Mean square error

Description

Computes the average square error between the input vectors.

Usage

mean_error_sqr(actual, predicted, na.rm = FALSE)

Value

Returns a double scalar with the mean square error value.

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.

See Also

mean_error(), mean_error_abs(), mean_error_pct(), mean_error_abs_pct(), mean_error_sqr_root()

Examples

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

mean_error_sqr(actual, predicted)

Run the code above in your browser using DataLab