summary.fast_logistic_regression_stepwise {fastLogisticRegressionWrap} | R Documentation |
FastLR Wrapper Summary
Description
Returns the summary table a la glm
Usage
## S3 method for class 'fast_logistic_regression_stepwise'
summary(object, ...)
Arguments
object |
The object built using the |
... |
Other arguments to be passed to |
Value
The summary as a data.frame
Examples
library(MASS); data(Pima.te)
flr = fast_logistic_regression_stepwise_forward(
Xmm = model.matrix(~ . - type, Pima.te),
ybin = as.numeric(Pima.te$type == "Yes"))
summary(flr)
[Package fastLogisticRegressionWrap version 1.2.0 Index]