Computes the element-wise absolute percent errors between the input vectors.

error_abs_pct(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 actual.

Value

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

A vector of the class lvmisc_percent with the element-wise absolute percent error values.

See also

Examples

actual <- runif(10) predicted <- runif(10) error_abs_pct(actual, predicted)
#> <lvmisc_percent[10]> #> [1] 144.563902379605% 87.5916860943107% 42.1147290060218% 26.9880058930711% #> [5] 401.051702502007% 90.0789082820859% 300.952697555918% 53.2918429986585% #> [9] 190.936986500219% 42.0189408765996%