LogisticRegressionFast {RSSL} | R Documentation |
Logistic Regression implementation that uses R's glm
Description
Logistic Regression implementation that uses R's glm
Usage
LogisticRegressionFast(X, y, lambda = 0, intercept = TRUE, scale = FALSE,
init = NA, x_center = FALSE)
Arguments
X |
matrix; Design matrix for labeled data |
y |
factor or integer vector; Label vector |
lambda |
numeric; not used |
intercept |
logical; Whether an intercept should be included |
scale |
logical; Should the features be normalized? (default: FALSE) |
init |
numeric; not used |
x_center |
logical; Should the features be centered? |
[Package RSSL version 0.9.7 Index]