Стандартные ошибки Ньюи-Уэста со средними группами / Fama-MacBeth estimator
Я пытаюсь получить стандартные ошибки Newey-West для работы с выходом pmg()
(средние группы/оценка Fama-MacBeth) из plm
пакета.
следуя примеру здесь:
require(foreign)
require(plm)
require(lmtest)
test <- read.dta("http://www.kellogg.northwestern.edu/faculty/petersen/htm/papers/se/test_data.dta")
fpmg <- pmg(y~x, test, index=c("firmid", "year")) # Time index in second position, unlike the example
я могу использовать coeftest
непосредственно просто отлично, чтобы получить стандартные ошибки Fama-MacBeth:
# Regular “Fama-MacBeth” standard errors
coeftest(fpmg)
# t test of coefficients:
#
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 0.032470 0.071671 0.453 0.6505
# x 0.969212 0.034782 27.866 <2e-16 ***
# ---
# Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
однако попытка использовать оценки Newey-West не удается:
# Newey-West standard-errors
coeftest(fpmg, vcov = NeweyWest(fpmg, lag=3))
# Error in UseMethod("estfun") :
# no applicable method for 'estfun' applied to an object of class "c('pmg', 'panelmodel')"
это похоже на недостаток в plm
пакет. Ты знаешь, как это сделать? Мне код моей собственной estfun
на pmg
объекты? Код оценки Ньюи-Уэста с нуля? Или я должен обойти plm
пакет в целом?
1 ответов
в настоящее время это невозможно с plm
пакета.
тем не менее, вы можете просто создать их самостоятельно.
Предположим, у вас есть:
fpmg <- pmg(y~x, test, index = c('year', 'firmid'))
fpmg.coefficients <- fpmg$coefficients
# (Intercept) x
# 0.03127797 1.03558610
coeftest(fpmg)
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 0.031278 0.023356 1.3392 0.1806
# x 1.035586 0.033342 31.0599 <2e-16 ***
тогда вы можете просто создать оценки сами, как в:
the.years <- unique(test$year)
a.formula <- y ~ x
first.step <- lapply(the.years, function(a.year) {
temp.data <- test[test$year == a.year, ]
an.lm <- lm(a.formula, data = temp.data)
the.coefficients <- an.lm$coef
the.results <- as.data.frame(cbind(a.year, t(the.coefficients)))
the.results
})
first.step.df <- do.call('rbind', first.step)
second.step.coefficients <- apply(first.step.df[, -1], 2, mean)
second.step.coefficients
# (Intercept) x
# 0.03127797 1.03558610
identical(fpmg.coefficients, second.step.coefficients)
# [1] TRUE
проверьте, что они идентичны в обоих направлениях на всякий случай. Наконец, вы можете получить Newey-West (1987) с одним лагом скорректированной t-статистики для средств с:
library(sandwich)
second.step.NW.sigma.sq <- apply(first.step.df[, -1], 2,
function(x) sqrt(NeweyWest(lm(x ~ 1),
lag = 1, prewhite = FALSE)['(Intercept)',
'(Intercept)']))
second.step.NW.sigma.sq
# (Intercept) x
# 0.02438398 0.02859447
t.statistics.NW.lag.1 <- second.step.coefficients / second.step.NW.sigma.sq
t.statistics.NW.lag.1
# (Intercept) x
# 1.282726 36.216301
обновление
в моем ответе, я включен только "ручной" расчет Т-статистики, потому что он вычислительно быстрее. Более общим решением является вычисление скорректированной t-статистики Ньюи-Уэста и их p-значений с помощью