print.fast_logistic_regression_stepwise {fastLogisticRegressionWrap}R Documentation

FastLR Wrapper Print

Description

Returns the summary table a la glm

Usage

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

Arguments

x

The object built using the fast_logistic_regression or fast_logistic_regression_stepwise wrapper functions

...

Other arguments to be passed to print

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

[Package fastLogisticRegressionWrap version 1.2.0 Index]