I am running a pooled time series model in STATA 17, the standard errors are clustered around different units. I have a concern about my model and prediction.
One of my independent variables is time-invariant, which is the Muslim majority variable. Also, all the variables are logged and lagged. Instead of fixed effects, I thought using a pooled-time series with necessary tools will be better.
I included lagged-DV as usual. But, I am not sure if I need to add time- dummies. Because I used lagged-DV as an independent variable. I thought I may inflate my coefficients with time-dummies (even if it might be unnecessary).
Best,
However, I may use a different model with time dummies.
One of my independent variables is time-invariant, which is the Muslim majority variable. Also, all the variables are logged and lagged. Instead of fixed effects, I thought using a pooled-time series with necessary tools will be better.
I included lagged-DV as usual. But, I am not sure if I need to add time- dummies. Because I used lagged-DV as an independent variable. I thought I may inflate my coefficients with time-dummies (even if it might be unnecessary).
Best,
Code:
reg dv L.dv L.c.a i.muslim L.lnb L.logn L.logdacoda L.loggdpconstant L.logtrade L.concor, vce(cluster id)
However, I may use a different model with time dummies.
Code:
reg dv L.dv L.c.a i.muslim L.lnb L.logn L.logdacoda L.loggdpconstant L.logtrade L.concor i.time, vce(cluster id)
Comment