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