[R] LASSO coefficients for a specific s

Bruno C. bruno.c at inwind.it
Tue Jun 12 20:29:35 CEST 2007


Hy,
no need to find the best s value. CV does it for you:
cvres<-cv.lars(X,Y,K=10,type='lasso')
sAtBest<-cvres$fraction[which.min(cvres$cv)]
fits <- predict.lars(object, type="coefficients", s=sAtBest, mode="fraction")

...
Ciao
Bruno

> Hello,
> 
> I have a question about the lars package. I am using this package to get the coefficients at a specific LASSO parameter s.
> 
> 
> data(diabetes)
> attach(diabetes)
> 
> object <- lars(x,y,type="lasso")
> 
> cvres<-cv.lars(x,y,K=10,fraction = seq(from = 0, to = 1, length = 100))
> 
> fits <- predict.lars(object, type="coefficients", s=0.1, mode="fraction")
> 
> 
> Can I assign automatically the best s value to predict.lars which is given by the CV process (cv.lars)? Or, do I need to manually find the s value that gives the minimum cv value from cv.lars, and assign it as the s value in predict.lars?
> 
> I would appreciate any advice on this. Thanks,
> Seungho Huh
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
> 


------------------------------------------------------
Passa a Infostrada. ADSL e Telefono senza limiti e senza canone Telecom
http://click.libero.it/infostrada



More information about the R-help mailing list