Hi, I am trying to run an FMOLS regression with a panel data set on the relationship between globalization and CO2 emissions. I have installed xtcointreg with:
but every time I try to run xtcointreg or cointreg like so:
I get the following error:
Otherwise I have been running a normal xtreg with the following code:
, which, while more than sufficient for my project- I am running into massive multicollinearity issues that from my reading FMOLS helps deal with. The variables I have are the level of CO2 emissions, the KOF index, and the per capita GDP, along with the square and cube roots. My control variables are financial development, urbanization, and human capital index.
Code:
ssc install xtcointreg, replace
Code:
xtcointreg lnco2 KOFGI lngdp ln2gdp ln3gdp vFD vURB vHC, est(fmols)
Code:
command cointreg is unrecognized r(199);
Code:
xtreg lnco2 KOFGI lngdp ln2gdp ln3gdp vFD vURB vHC , fe vce(robust)
Comment