Dear Joao Santos Silva and Sergio Correia,
I am conducting a research which assesses to what extend BITs increase trade in services. I am using panel data with 656012 observations for the period 2005-2021.
Dependent variable: sum_trade. My question here is whether it is OK to add trade imports and trade exports, or whether I should only regress one of the two. Source of the variable: WTO-OECD Balanced Trade in Services Dataset (BaTiS) — BPM6.
Key independent variable: bit (dummy equal to unity for country pairs sharing a BIT or equal to 0 when only one country is a member of a BIT).
Control variables: Source of the variables is CEPII.
I am conducting a research which assesses to what extend BITs increase trade in services. I am using panel data with 656012 observations for the period 2005-2021.
Dependent variable: sum_trade. My question here is whether it is OK to add trade imports and trade exports, or whether I should only regress one of the two. Source of the variable: WTO-OECD Balanced Trade in Services Dataset (BaTiS) — BPM6.
Key independent variable: bit (dummy equal to unity for country pairs sharing a BIT or equal to 0 when only one country is a member of a BIT).
Control variables: Source of the variables is CEPII.
- log_distw
- log_gdp_d
- log_gdp_o
- contig
- comlang_off
- col45
- gatt
- fta_wto
cap egen imp_year=group(par year)The problem is that 6 variables are omitted because of collinearity: log_gdp_d log_gdp_o contig comlang_off col45 gatt. Also, P value is quite high, although the model seems to be explanatory because of the high R-square. Why does Stata omit variables? How can I lower the P value? See the results of the regression:
cap egen exp_year=group(rep year)
cap egen pair=group(rep par)
cap ado uninstall ftools
cap ado uninstall reghdfe
cap ado uninstall ppmlhdfe
xtset pair year
ssc install ftools
ssc install reghdfe
ssc install ppmlhdfe
ftools, compile
generate sum_trade = TRADEIMP + TRADEEXP
generate log_distw=log(distw_harmonic)
generate log_gdp_d=log(gdp_d)
generate log_gdp_o=log(gdp_o)
ppmlhdfe sum_trade bit log_distw log_gdp_d log_gdp_o contig comlang_off col45 gatt oecd eu fta_wto, a(exp_year imp_year pair) cluster(pair)
Comment