Fixed effects regression with state specific trends

房东的猫 提交于 2019-12-13 02:02:44

问题


I'm working with panel data and I want to estimate a fixed effects regression with state specific trends.

In Stata, I could accomplish this by the following,

xi i.state i.year i.state*time
reg y x _I*

The above will create state dummies, year dummies, and 50 (state x time) dummies where time numerically identifies the trend (i.e. 1, 2, 3...)

In R, I can run a fixed effects model with plm or lm, for example,

plm(y ~ x, index = c("state", "year"), effect = "twoways", data = df)
 lm(y ~ x + factor(state) + factor(year), data = df)

How would I include the 50 (state x time) dummies the way xi does in Stata?

I know interaction() is not what I want because that creates a new factor variable with n levels, where n = (num of states) x (num of time periods). What I'm trying to do is create 50 (state x time) variables such that state1xtime is 1,2,3... when state == 1 and zero otherwise, repeat for state2xtime, where state == 2, etc.


回答1:


You would do this simply interacting state with year. The correct operator for this is :, which only includes the interactions terms.

Note that there is a subtle difference between lm and plm:

  • for lm, just do state:year
  • for plm, year has been converted implicitly to a factor, so do state:as.integer(year) (doing state:year would give you all combinations of state and year).

check:

library(plm)

data("Produc", package = "plm")
produc_plm <- pdata.frame(Produc, index = c("state","year"))

### simple state-specific time trend ###
fe1_Ttrend_lm <- lm(log(gsp) ~ -1 + log(pcap) + log(pc) + log(emp) + unemp + state +state:year, data = Produc)
fe1_Ttrend_plm <- plm(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp + state : as.integer(year), data = produc_plm)

summary(fe1_Ttrend_lm)$coef[1:4,]
summary(fe1_Ttrend_plm)$coef[1:4,]



回答2:


Could this be what you are looking for:

dta <- data.frame(state = rep(LETTERS[1:3], 10), 
              time = rep(1:3, each = 10))
dta <- cbind(dta, model.matrix( ~ state - 1, data = dta) * dta$time)

head(dta, 1)
#     state time stateA stateB stateC
# 1     A    1      1      0      0

tail(dta, 1)
#      state time stateA stateB stateC
# 30     C    3      0      0      3


来源:https://stackoverflow.com/questions/34232834/fixed-effects-regression-with-state-specific-trends

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!