pinball.md
Pinball Loss
Description
safe_pinball <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
pinball(x, y, ...)
}Usage
## Generic S3 method
## for Pinball Loss
pinball(...)
## Generic S3 method
## for weighted Pinball Loss
weighted.pinball(...)Arguments
Value
References
Examples
Last updated