powered by
Computes the element-wise squared errors between the input vectors.
error_sqr(actual, predicted)
Returns a double vector with the element-wise squared error values.
A numeric vector with the actual values
A numeric vector with the predicted values. Each element in this vector must be a prediction for the corresponding element in actual.
actual
error(), error_pct(), error_abs(), error_abs_pct().
error()
error_pct()
error_abs()
error_abs_pct()
actual <- runif(10) predicted <- runif(10) error_sqr(actual, predicted)
Run the code above in your browser using DataLab