Hey everybody,
you probably heard it a thousand times but I have serious troubles with my fixed effect model. But lets start from the beginning:
I'm currently doing a panel regression with 23 different european countries for the time period 2001-2012. In my research I want to explore the impact of sovereign credit ratings on the M&A activity. I there fore gathered all the data including GDP, Inflation, Interest rates, Exchange rates, M&A volume and some other control variables. However, from a logical and theoretical perspective I would say that one would apply a fixed effect model for this kind of thematic (thats actually also want all other researches did so far). However, when using a fixed effect model I only get very small t-statistics (around 0) for all my variables, what is pretty surprising. At least for GDP I should find something significant... The Hausman test also suggests to take a random effects model. When using an re I indeed get better results but the standard error and coefficient of the rating is extremely high and all other coefficients are extremely low. So currently I'm not really sure how to go one. One the one hand I have more or less good results when using a random effects model but in theory a fixed effect model should be appropriate. I don't know where the mistake could hide as I think my data is pretty good and also the correlation table totally makes sense.
My code which I used for the fixed and random effects model:
egen country1 = group(Country)
xtset country1 Year, yearly
xtreg MAvolume LnGDP LnRating Inflation InterestRates ExchangeRates TradeOpeness, fe
I also posted my results and I hope that you understand my issue
Thank you very much for your help!
you probably heard it a thousand times but I have serious troubles with my fixed effect model. But lets start from the beginning:
I'm currently doing a panel regression with 23 different european countries for the time period 2001-2012. In my research I want to explore the impact of sovereign credit ratings on the M&A activity. I there fore gathered all the data including GDP, Inflation, Interest rates, Exchange rates, M&A volume and some other control variables. However, from a logical and theoretical perspective I would say that one would apply a fixed effect model for this kind of thematic (thats actually also want all other researches did so far). However, when using a fixed effect model I only get very small t-statistics (around 0) for all my variables, what is pretty surprising. At least for GDP I should find something significant... The Hausman test also suggests to take a random effects model. When using an re I indeed get better results but the standard error and coefficient of the rating is extremely high and all other coefficients are extremely low. So currently I'm not really sure how to go one. One the one hand I have more or less good results when using a random effects model but in theory a fixed effect model should be appropriate. I don't know where the mistake could hide as I think my data is pretty good and also the correlation table totally makes sense.
My code which I used for the fixed and random effects model:
egen country1 = group(Country)
xtset country1 Year, yearly
xtreg MAvolume LnGDP LnRating Inflation InterestRates ExchangeRates TradeOpeness, fe
I also posted my results and I hope that you understand my issue

Thank you very much for your help!
Comment