Skip to content
Prev 142816 / 398498 Next

Extracting coefficients' standard errors from linear model

Uli Kleinwechter <ulikleinwechter at yahoo.com.mx> wrote in
news:4811E2E9.3080603 at yahoo.com.mx:
See if vcov() suits. From the lm() help page an example:
Then look at summary(lm.D9) and these results:
[1] 0.09699167
[1] 0.3114349

diag(vcov(lm.mdl))^(1/2) may be needed to get the vector you seek.