GLMNet.jl icon indicating copy to clipboard operation
GLMNet.jl copied to clipboard

Multivariate normal L1 regression

Open BenjaminDoran opened this issue 1 year ago • 0 comments

Maybe i'm blind, but how can I fit a linear lasso model on multiple dependent variables?

There doesn't seem to be a method for

X = rand(100, 10)
Y = rand(100, 4)
path = glmnet(X, Y,  Normal())
# or 
path = glmnet(X, Y,  MvNormal())

BenjaminDoran avatar Apr 01 '23 17:04 BenjaminDoran