weighted.rrmse.numeric.md
Relative Root Mean Squared Error
Description
safe_rrmse <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
rrmse(x, y, ...)
}Usage
## S3 method for class 'numeric'
weighted.rrmse(actual, predicted, w, normalization = 1L, ...)Arguments
Value
References
Examples
Last updated