Hi,
In a Gravity Model estimation with PPML,
which is the difference between these two options if I want to include fixed effects on my model? Are both correct?
Option 1:
egen exp = group(exporter)
quietly tabulate exp, gen(EXPORTER_FE)
egen imp = group(importer)
quietly tabulate imp, gen(IMPORTER_FE)
egen time = group(year)
quietly tabulate imp, gen(YEAR_FE)
Option 2:
egen exp_time = group(exporter year)
quietly tabulate exp_time, gen(EXPORTER_TIME_FE)
egen imp_time = group(importer year)
quietly tabulate imp_time, gen(IMPORTER_TIME_FE)
Thanks,
Daniel
Related Posts with PPML Fixed Effects
Generate data subject to pre specified distributionHi I am new to STATA. I want to generate a random variable with integer between 0 and 4 satisfying …
Variable changes_Telling stata to consider only 2 digits after decimal var3 0.001 0.0005 0.00006 0.01 My question is very elementary or trivial, but as I …
Outcome / negative -0.000?Hello I got in a regression, for a variable the coefficient -0.0001063. The problem is that as in m…
weights application on chi square testHello, I have a large regional dataset with a weight variable ready. I am trying to conduct a chi-s…
Hybrid or Hausman-Taylor model with year-fixed effectsDear all, as I am analyzing the effect of education on individual's wage level with panel data on a…
Subscribe to:
Post Comments (Atom)
0 Response to PPML Fixed Effects
Post a Comment