Learn R Programming

fastLogisticRegressionWrap (version 1.2.0)

print.fast_logistic_regression_stepwise: FastLR Wrapper Print

Description

Returns the summary table a la glm

Usage

# S3 method for fast_logistic_regression_stepwise
print(x, ...)

Value

The summary as a data.frame

Arguments

x

The object built using the fast_logistic_regression or fast_logistic_regression_stepwise wrapper functions

...

Other arguments to be passed to print

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"))
print(flr)

Run the code above in your browser using DataLab