AUC of Binomial GLM with Logit Link and Case Weights
Source:R/preference_order.R
f_logistic_auc_unbalanced.RdFits a quasibinomial GLM model y ~ x with case weights when y is an unbalanced binary response with values 0 and 1 and x is numeric. It uses the function case_weights() to weight 0s and 1s according to their frequency within y.
See also
Other preference_order:
auc_score(),
case_weights(),
f_gam_auc_balanced(),
f_gam_auc_unbalanced(),
f_gam_deviance(),
f_logistic_auc_balanced(),
f_rf_auc_balanced(),
f_rf_auc_unbalanced(),
f_rf_rsquared(),
f_rsquared(),
preference_order()
Examples
data(vi)
#subset to limit example run time
vi <- vi[1:1000, ]
f_logistic_auc_unbalanced(
x = "growing_season_length", #predictor
y = "vi_binary", #binary response
df = vi
)
#> [1] 0.9367964