error_pct | R Documentation |
Computes the element-wise percent error between the input vectors.
error_pct(actual, predicted)
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
|
Returns a double vector with the element-wise percent error values.
A vector of the class lvmisc_percent
with the element-wise
percent error values.
error()
,
error_abs()
,
error_abs_pct()
,
error_sqr()
.
actual <- runif(10)
predicted <- runif(10)
error_pct(actual, predicted)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.