필터 지우기
필터 지우기

Ridge regression and MSE

조회 수: 6 (최근 30일)
Robby
Robby 2011년 3월 21일
Hi I am comparing MSE of OLS and ridge regression in order to determine which estimate is best. Is there some command or procedure in MATLAB how to get MSE of the ridge estimate??
Thanks

채택된 답변

John D'Errico
John D'Errico 2011년 3월 21일
Well, since MSE is simply the mean of the squares of the errors...
MSE = mean((y-yhat).^2);
Won't that suffice?

추가 답변 (4개)

Robby
Robby 2011년 3월 21일
But how do you get yhat for ridge regression in matlab? for OLS you simply do regstats command, but what command do you use for ridge regression statistics? is there one?
Thanks.

Richard Willey
Richard Willey 2011년 3월 21일
Use the "scaled" option to restore the coefficient estimates to the scale of the original data.
You can then use b to estimate yhat.
b = ridge(y,X,k,scaled) uses the {0,1}-valued flag scaled to determine if the coefficient estimates in b are restored to the scale of the original data

Robby
Robby 2011년 3월 21일
So for the 'scaled' option I use original data matrix X and response variable y (i.e. uncentered and unscaled)? If so, beta will have a constant included, and so in order to estimate yhat I need to add a column of ones in X right?
Thanks again

pemfir
pemfir 2011년 12월 11일
there are 2 version of MSE MSE = SSE/(n-q) unlike what John D'Errico said this is not simply the mean of errors. notice the denominator. it is n-q where q is the number of parameters in the model.
the second MSE which you should use (sometimes people use "mse" lower case to differentiate it with the first MSE) is MSE = bias^2 + var Since ridge regression tries to reduce Var by introducing bias, the second version is what you need to use.
the expression for it is a bit long, but you can find it easily in regression books such as "introduction to linear regression analysis" by Montgomery in the chapter on "multicollinearity"

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by