Hello!
I have panel data comprising 26 countries and 22 years. I want to test the effect of the political and legal environment on the M&A activity both measured through the number of deals and total volume.
After running the Hausman test, Fixed Effect is suggested but, under "robust" setup all the independent variables lose significance.
I had in mind to take the first difference of my dependent variables, but I have a couple of questions regarding the code and the way to proceed.
With the Augmented DF, resulting in a 0.58 p-value, it suggests the presence of unit root, while with the second Y variable, I have a p-value of 0.002
1) what's the right set to run the first difference, justifying it according to unit-root test?
2) is there a way in which we can deal with heteroskedasticity to obtain significant results?
Many thanks in advance.
I have panel data comprising 26 countries and 22 years. I want to test the effect of the political and legal environment on the M&A activity both measured through the number of deals and total volume.
After running the Hausman test, Fixed Effect is suggested but, under "robust" setup all the independent variables lose significance.
I had in mind to take the first difference of my dependent variables, but I have a couple of questions regarding the code and the way to proceed.
Code:
xtunitroot llc num_deals if country, lags (4)
Code:
xtunitroot llc ln_value_deals if country, lags (4)
2) is there a way in which we can deal with heteroskedasticity to obtain significant results?
Many thanks in advance.
Comment