Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I'm looking for a non-technical definition of the lasso and what it is used for.

share|improve this question

2 Answers

The LASSO (Least Absolute Shrinkage and Selection Operator) is a regression method that involves penalizing the absolute size of the regression coefficients.

By penalizing (or equivalently constraining the sum of the absolute values of the estimates) you end up in a situation where some of the parameter estimates may be exactly zero. The larger the penalty applied, the further estimates are shrunk towards zero.

This is convenient when we want some automatic feature/variable selection, or when dealing with highly correlated predictors, where standard regression will usually have regression coefficients that are 'too large'.

http://www-stat.stanford.edu/~tibs/ElemStatLearn/ (Free download) has a good description of the LASSO and related methods.

share|improve this answer
I'm new to the site; this is precisely the information I was looking for; many thanks. – Paul Vogt Oct 19 '11 at 6:13
4  
@Paul: You could accept this answer if you think it gives you what you need – Henry Oct 19 '11 at 9:42

From Robert Tibshirani's (the author of the original lasso paper) page: A simple explanation of the Lasso and Least Angle Regression.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.