glmnet is an R package by Jerome Friedman, Trevor Hastie, Rob Tibshirani that fits entire Lasso or ElasticNet regularization paths for linear, logistic, multinomial, and Cox models using cyclic coordinate descent. This Julia package wraps the Fortran code from glmnet.
To fit a basic model:
julia> using GLMNet
julia> y = collect(1:100) + randn(100)*10;
julia> X = [1:100 (1:100)+randn(100)*5 (1:100)+randn(100)*10 (1:100)+randn(100)*20];
julia> path = glmnet(X, y)
Least Squares GLMNet Solution Path (55 solutions for 4 predictors in 163 passes):
55x3 DataFrame:
df pct_dev λ
[1,] 0 0.0 27.1988
[2,] 1 0.154843 24.7825
[3,] 1 0.283396 22.5809
:
[53,] 2 0.911956 0.215546
[54,] 2 0.911966 0.196397
[55,] 2 0.911974 0.17895
path
represents the Lasso or ElasticNet fits for varying values of λ. The value of the intercept for each λ value are in path.a0
. The coefficients for each fit are stored in compressed form in path.betas
.
julia> path.betas
4x55 CompressedPredictorMatrix:
0.0 0.083706 0.159976 0.22947 … 0.929157 0.929315
0.0 0.0 0.0 0.0 0.00655753 0.00700862
0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0
This CompressedPredictorMatrix can be indexed as any other AbstractMatrix, or converted to a Matrix using convert(Matrix, path.betas)
.
To predict the output for each model along the path for a given set of predictors, use predict
:
julia> predict(path, [22 22+randn()*5 22+randn()*10 22+randn()*20])
1x55 Array{Float64,2}:
51.7098 49.3242 47.1505 45.1699 … 25.1036 25.0878 25.0736
To find the best value of λ by cross-validation, use glmnetcv
:
julia> cv = glmnetcv(X, y)
Least Squares GLMNet Cross Validation
55 models for 4 predictors in 10 folds
Best λ 0.343 (mean loss 76.946, std 12.546)
julia> indmin(cv.meanloss)
48
julia> cv.path.betas[:, 48]
4-element Array{Float64,1}:
0.926911
0.00366805
0.0
0.0
glmnet
has two required parameters: the m x n predictor matrix X
and the dependent variable y
. It additionally accepts an optional third argument, family
, which can be used to specify a generalized linear model. Currently, only Normal()
(least squares, default), Binomial()
(logistic), and Poisson()
are supported, although the glmnet Fortran code also implements a Cox model. For logistic models, y
is a m x 2 matrix, where the first column is the count of negative responses for each row in X
and the second column is the count of positive responses. For all other models, y
is a vector.
glmnet
also accepts many optional parameters, described below:
weights
: A vector of weights for each sample of the same size asy
.alpha
: The tradeoff between lasso and ridge regression. This defaults to1.0
, which specifies a lasso model.penalty_factor
: A vector of length n of penalties for each predictor inX
. This defaults to all ones, which weights each predictor equally. To specify that a predictor should be unpenalized, set the corresponding entry to zero.constraints
: An n x 2 matrix specifying lower bounds (first column) and upper bounds (second column) on each predictor. By default, this is[-Inf Inf]
for each predictor inX
.dfmax
: The maximum number of predictors in the largest model.pmax
: The maximum number of predictors in any model.nlambda
: The number of values of λ along the path to consider.lambda_min_ratio
: The smallest λ value to consider, as a ratio of the value of λ that gives the null model (i.e., the model with only an intercept). If the number of observations exceeds the number of variables, this defaults to0.0001
, otherwise0.01
.lambda
: The λ values to consider. By default, this is determined fromnlambda
andlambda_min_ratio
.tol
: Convergence criterion. Defaults to1e-7
.standardize
: Whether to standardize predictors so that they are in the same units. Defaults totrue
. Beta values are always presented on the original scale.intercept
: Whether to fit an intercept term. The intercept is always unpenalized. Defaults totrue
.maxit
: The maximum number of iterations of the cyclic coordinate descent algorithm. If convergence is not achieved, a warning is returned.