View source: R/choosing_metrics_functions.R
binomial_metrics | R Documentation |
Enable/disable metrics for binomial evaluation. Can be supplied to the
`metrics`
argument in many of the cvms
functions.
Note: Some functions may have slightly different defaults than the ones supplied here.
binomial_metrics(
all = NULL,
balanced_accuracy = NULL,
accuracy = NULL,
f1 = NULL,
sensitivity = NULL,
specificity = NULL,
pos_pred_value = NULL,
neg_pred_value = NULL,
auc = NULL,
lower_ci = NULL,
upper_ci = NULL,
kappa = NULL,
mcc = NULL,
detection_rate = NULL,
detection_prevalence = NULL,
prevalence = NULL,
false_neg_rate = NULL,
false_pos_rate = NULL,
false_discovery_rate = NULL,
false_omission_rate = NULL,
threat_score = NULL,
aic = NULL,
aicc = NULL,
bic = NULL
)
all |
Enable/disable all arguments at once. (Logical) Specifying other metrics will overwrite this, why you can
use ( |
balanced_accuracy |
|
accuracy |
|
f1 |
|
sensitivity |
|
specificity |
|
pos_pred_value |
|
neg_pred_value |
|
auc |
|
lower_ci |
|
upper_ci |
|
kappa |
|
mcc |
|
detection_rate |
|
detection_prevalence |
|
prevalence |
|
false_neg_rate |
|
false_pos_rate |
|
false_discovery_rate |
|
false_omission_rate |
|
threat_score |
|
aic |
AIC. (Default: FALSE) |
aicc |
AICc. (Default: FALSE) |
bic |
BIC. (Default: FALSE) |
Ludvig Renbo Olsen, r-pkgs@ludvigolsen.dk
Other evaluation functions:
confusion_matrix()
,
evaluate()
,
evaluate_residuals()
,
gaussian_metrics()
,
multinomial_metrics()
# Attach packages
library(cvms)
# Enable only Balanced Accuracy
binomial_metrics(all = FALSE, balanced_accuracy = TRUE)
# Enable all but Balanced Accuracy
binomial_metrics(all = TRUE, balanced_accuracy = FALSE)
# Disable Balanced Accuracy
binomial_metrics(balanced_accuracy = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.