I am using NeweyWest standard errors to correct my lm() / dynlm() output. E.g.:

fit1<-dynlm(depvar~covariate1+covariate2)
coeftest(fit1,vcov=NeweyWest)

Coefficients are displayed the way I´d like to, but unfortunately I loose all the regression output information like R squared, F-Test etc. that is displayed by summary. So I wonder how I can display robust se and all the other stuff in the same summary output.

Is there a way to either get everything in one call or to overwrite the 'old' estimates? I bet I just missed something badly, but that is really relevant when sweaving the output.

Test example, taken from ?dynlm.

require(dynlm)
require(sandwich)
data("UKDriverDeaths", package = "datasets")
uk <- log10(UKDriverDeaths)
dfm <- dynlm(uk ~ L(uk, 1) + L(uk, 12))

#shows R-squared, etc.
summary(dfm)

#no such information
coeftest(dfm, vcov = NeweyWest)

btw.: same applies for vcovHC

link|improve this question

3  
So we're clear, is that dynlm from the dynlm package, NeweyWest from the sandwich package, and coeftest from the lmtest package? – Richie Cotton Jul 14 '11 at 10:15
@ran2, can you please add the necessary library or require statements to your question so that it becomes reproducible? – Andrie Jul 14 '11 at 10:29
sorry guys... thought with the stomach.. lunchtime and I was starving. edited my post. Thank you @Richie Cotton for helping out! – ran2 Jul 14 '11 at 11:13
Thanks, @ran2. +1 – Andrie Jul 14 '11 at 13:35
feedback

1 Answer

up vote 1 down vote accepted

coefficients is just a matrix in the lm (or dynlm) summary object, so all you need to do is unlcass the coeftest() output.

library(dynlm)
library(sandwich)
library(lmtest)
temp.lm <- dynlm(runif(100) ~ rnorm(100))
temp.summ <- summary(temp.lm)
temp.summ$coefficients <- unclass(coeftest(temp.lm, vcov. = NeweyWest))
link|improve this answer
thx so much, unclass was exactly the piece I was missing. sry for the delayed accept though. – ran2 Aug 11 '11 at 7:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.