I have a panel data set with id=52 and time variable year, 2000 to 2018 (988 observations). I would like to model log of number of marriages (y1), log of number of divorces (y2) and log of number of births (y3) at id level (where id are provinces). I ran a Hausman test and estimated a fe model accordingly. Same x covariates (gdp, pop, education, unemployment... ) in each model specification.
xtset id year
xtreg y1 x i.year, fe vce(robust)
xtreg y2 x i.year, fe vce(robust)
xtreg y3 x i.year, fe vce(robust)
Since I think it makes sense to suppose that the underlying processes for the three dependent variables might be similar, I would like to perform a seemingly unrelated regression.
First, I considered sureg - but not sure if it works with panel data. So, I had a look at xtsur (http://fmwww.bc.edu/RePEc/bocode/x/xtsur.html) - but it uses re estimators. I tried to run xtsur adding i.id to the list of regressor (does it make sense?), but Stata 15 failed in calculating...
So, I got back to sureg and tried this:
xtset id year
sureg (y1 x i.year i.id) (y2 x i.year i.id) (y3 x i.year i.id), corr
Is this a correct approach for estimating SUR with fixed effects panel data? Any alternative?
Thanks!
Related Posts with Seemingly unrelated regression with panel data fixed effects
no observations r(2000)Hi, I'm trying to make a regression on a panel dataset, but this ---no observations r(2000);--- I a…
Error r(198)-- "option bwcheck() not allowed" displays when attempting to use the rdsampsi commandI'm trying to find the sample size for an MDES for a regression discontinuity analysis, and I stumbl…
defining a new variable such that one variable (string) in another variable?Dear All, Suppose that I have the data Code: * Example generated by -dataex-. To install: ssc insta…
esttab produces redundant table openings &\multicolumns{}, when looping and appending regression results, that can not be suppressedDear Ben Jann, I am very much thankful for all the scripts and packages that you have written so fa…
Catplot Label CustomizationHello! I have three questions when using catplot. 1) Labels (designated as the supaxis) were trunc…
Subscribe to:
Post Comments (Atom)
0 Response to Seemingly unrelated regression with panel data fixed effects
Post a Comment