brier.score.md
Brier Score
Description
safe_brier.score <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
brier.score(x, y, ...)
}Usage
## Generic S3 method
## for Brier Score
brier.score(...)
## Generic S3 method
## for weighted Brier Score
weighted.brier.score(...)Arguments
Value
References
Examples
Last updated