powered by
Returns the summary table a la glm
# S3 method for fast_logistic_regression summary(object, alpha_order = TRUE, ...)
The summary as a data.frame
The object built using the fast_logistic_regression or fast_logistic_regression_stepwise wrapper functions
fast_logistic_regression
fast_logistic_regression_stepwise
Should the coefficients be ordered in alphabetical order? Default is TRUE.
TRUE
Other arguments to be passed to summary.
summary
library(MASS); data(Pima.te) flr = fast_logistic_regression( Xmm = model.matrix(~ . - type, Pima.te), ybin = as.numeric(Pima.te$type == "Yes")) summary(flr)
Run the code above in your browser using DataLab