fpr.factor.md
False Positive Rate
Description
safe_fpr <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
fpr(x, y, ...)
}## compute confusion matrix
confusion_matrix <- cmatrix(actual, predicted)
## evaluate false positive rate
## via S3 dispatching
fpr(confusion_matrix)
## additional performance metrics
## belowUsage
Arguments
Value
Other names
References
Examples
Last updated