Learn R Programming

fastLogisticRegressionWrap (version 1.2.0)

summary.fast_logistic_regression_stepwise: FastLR Wrapper Summary

Description

Returns the summary table a la glm

Usage

# S3 method for fast_logistic_regression_stepwise
summary(object, ...)

Value

The summary as a data.frame

Arguments

object

The object built using the fast_logistic_regression_stepwise wrapper functions

...

Other arguments to be passed to summary.

Examples

Run this code
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)

Run the code above in your browser using DataLab