View source: R/blr-multi-model-fit-stats.R
| blr_multi_model_fit_stats | R Documentation |
Measures of model fit statistics for multiple models.
blr_multi_model_fit_stats(model, ...)
## Default S3 method:
blr_multi_model_fit_stats(model, ...)
model |
An object of class |
... |
Objects of class |
A tibble.
Other model fit statistics:
blr_model_fit_stats(),
blr_pairs(),
blr_rsq_adj_count(),
blr_rsq_cox_snell(),
blr_rsq_effron(),
blr_rsq_mcfadden_adj(),
blr_rsq_mckelvey_zavoina(),
blr_rsq_nagelkerke(),
blr_test_lr()
model <- glm(honcomp ~ female + read + science, data = hsb2,
family = binomial(link = 'logit'))
model2 <- glm(honcomp ~ female + read + math, data = hsb2,
family = binomial(link = 'logit'))
blr_multi_model_fit_stats(model, model2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.