Learn R Programming

AutoModel (version 0.4.9)

model_summary_table_binomial: Binary Logistic Regression: Model Summary Output

Description

Binary Logistic Regression: Model Summary Output

Usage

model_summary_table_binomial(models)

Arguments

models
A list of lm model objects. A set of model objects created by create_model_object.

Details

Creates summary table with pseudo R^2 values for the binary logistic regression model objects

Examples

Run this code
formulas <- create_formula_objects("am", c("hp", "mpg"), c("disp"),
c("drat"))
mtcars_models <- create_model_objects(formulas, data=mtcars,
type="binomial")
last_model <- mtcars_models[[length(mtcars_models)]]

Run the code above in your browser using DataLab