Please help in understanding the differnce in ridge expression and why I get the different results using 0.02
gridge1<-lm.ridge(divorce~.,data=divusa,lambda=0.02)
gridge
year unemployed femlab marriage birth military
-0.0315 -0.1182 0.4317 0.1094 -0.1279 -0.02719
and this expression: round(coef(gridge)[2,-1],3)
year unemployed femlab marriage birth military
-0.195 -0.053 0.790 0.148 -0.118 -0.042
gridge1<-lm.ridge(divorce~.,data=divusa,lambda=0.02)
gridge
year unemployed femlab marriage birth military
-0.0315 -0.1182 0.4317 0.1094 -0.1279 -0.02719
and this expression: round(coef(gridge)[2,-1],3)
year unemployed femlab marriage birth military
-0.195 -0.053 0.790 0.148 -0.118 -0.042