error_sqr {lvmisc} | R Documentation |
Squared error
Description
Computes the element-wise squared errors between the input vectors.
Usage
error_sqr(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
|
Value
Returns a double vector with the element-wise squared error values.
See Also
error()
,
error_pct()
,
error_abs()
,
error_abs_pct()
.
Examples
actual <- runif(10)
predicted <- runif(10)
error_sqr(actual, predicted)
[Package lvmisc version 0.1.2 Index]