Hello,
I'm trying to retrace the empirical findings of Daniel M. Bernhofen, Zouheir El-Sahli und Richard Kneller (2013) in their Paper: Estimating the Effects of the Container Revolution on World Trade, CESifo Working Paper No. 4136. So I created a Panel with the bilateral exports, the portcont, fullcont, FTA and GATT Dummy and tried to run a first-differenced regression in stata. Here is an example of my data:

I imported the data and declared it as panel data:
. xtset ID Jahr, generic
panel variable: ID (weakly balanced)
time variable: Jahr, 1962 to 1990
delta: 1 unit
But as soon as I run a fixed effect regression, all my dummies are ommited. How did the authors in the paper managed to run this regression? I only created the dummies like this: gen portcont = 1 if porti == 1 & portj == 1. I also created the variable logExporte.
I know I still have to create lag time variables and the first-difference variable. But when I created: gen dlogExporte = d.logExporte, the variable had no data.
Does somebody know where I made mistakes and how to run this regression in Stata?
Thanks in advance!
I'm trying to retrace the empirical findings of Daniel M. Bernhofen, Zouheir El-Sahli und Richard Kneller (2013) in their Paper: Estimating the Effects of the Container Revolution on World Trade, CESifo Working Paper No. 4136. So I created a Panel with the bilateral exports, the portcont, fullcont, FTA and GATT Dummy and tried to run a first-differenced regression in stata. Here is an example of my data:
I imported the data and declared it as panel data:
. xtset ID Jahr, generic
panel variable: ID (weakly balanced)
time variable: Jahr, 1962 to 1990
delta: 1 unit
But as soon as I run a fixed effect regression, all my dummies are ommited. How did the authors in the paper managed to run this regression? I only created the dummies like this: gen portcont = 1 if porti == 1 & portj == 1. I also created the variable logExporte.
I know I still have to create lag time variables and the first-difference variable. But when I created: gen dlogExporte = d.logExporte, the variable had no data.
Does somebody know where I made mistakes and how to run this regression in Stata?
Thanks in advance!
Comment