I am using a X and Y data no standarize ($X_{196\times 20}$ and $Y_{196\times 1}$) and I get diferente coefficientes when I use the following formula:
a<-lm.ridge(Y~X, lambda = 0)
b<-lm(Y~X)
as.matrix(b$coefficients)[-1]-as.matrix(a$coef)
why?
When lambda = 0 ridge regression should be the same as OLS.
the lm.ridge formula needs first to standarize the inputs?