How does the Lasso function handle NaN values?
조회 수: 10 (최근 30일)
이전 댓글 표시
I have a dataset (assembled as a matrix) that I want to run perform LASSO regression on, however, as a processing step outliers are removed and marked as NaN.
My question is how does the LASSO function handle these NaN values, would it be worth me performing some level of imputation?
댓글 수: 0
채택된 답변
David Fink
2017년 9월 28일
The lasso function ignores all rows (observations) with NaN values.
This can be seen in the code for 'lasso' near line 240 where it checks isfinite() on each row.
>> open lasso
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!