LogisticRegressionFast: Logistic Regression implementation that uses R's glm

View source: R/LogisticRegression.R

LogisticRegressionFastR 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?


jkrijthe/RSSL documentation built on Jan. 13, 2024, 1:56 a.m.