weighted.smape.numeric.md
Symmetric Mean Absolutte Percentage Error
Description
safe_smape <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
smape(x, y, ...)
}Usage
## S3 method for class 'numeric'
weighted.smape(actual, predicted, w, ...)Arguments
Value
References
Examples
Last updated