Dear all,
I have to do a gravity model in Stata using fixed effect for my thesis. My director asked me to use time fixed effect and country fixed effect in my regression. So, i have used this following regression on Stata:
xtreg lntotexp lnpibass lnpopass lnce agoa_dum2retarde sra_dum2 omc_dum2 i.year i.country1, fe
I want to estimate the effect of these different variables on the total export from sub-saharan Africa countries to the United states.
In my result on Stata, the country fixed effect are omitted and other variables are really insignificant.
So I tried to do it again without the country fixed effects:
xtreg lntotexp lnpibass lnpopass lnce agoa_dum2retarde sra_dum2 omc_dum2 i.year, fe
Again, all the variables are insignificant (except the lnpibass). So, i would like to know how to correct this insignificance problem and omitted variables problem when I use year and country fixed effects in my regressions?
There is three dummy variables in regression, and AGOA is delayed by one year (because agreements take time to translate into increased exports) by using this code:
gen agoa_dum2retarde=agoa[_n-1]
Data goes from 1992 to 2017 and take account 49 countries.
Best regards,
Aylin
I have to do a gravity model in Stata using fixed effect for my thesis. My director asked me to use time fixed effect and country fixed effect in my regression. So, i have used this following regression on Stata:
xtreg lntotexp lnpibass lnpopass lnce agoa_dum2retarde sra_dum2 omc_dum2 i.year i.country1, fe
I want to estimate the effect of these different variables on the total export from sub-saharan Africa countries to the United states.
In my result on Stata, the country fixed effect are omitted and other variables are really insignificant.
So I tried to do it again without the country fixed effects:
xtreg lntotexp lnpibass lnpopass lnce agoa_dum2retarde sra_dum2 omc_dum2 i.year, fe
Again, all the variables are insignificant (except the lnpibass). So, i would like to know how to correct this insignificance problem and omitted variables problem when I use year and country fixed effects in my regressions?
There is three dummy variables in regression, and AGOA is delayed by one year (because agreements take time to translate into increased exports) by using this code:
gen agoa_dum2retarde=agoa[_n-1]
Data goes from 1992 to 2017 and take account 49 countries.
Best regards,
Aylin
Comment