Dear statalists
I have been encountering an issue with interpreting the output/results generated by Stata. I have done some troubleshooting and googling but still can't figure out why the risk ratio of preterm birth in the intervention group could go up so high (IRR=5361.1) after adding an interaction term (log serum zinc * intervention group) to a Poisson regression model.
Output (1):
Code:
. poisson preterm c.log_aZinc##i.group ,irr Iteration 0: log likelihood = -144.87344 Iteration 1: log likelihood = -144.86904 Iteration 2: log likelihood = -144.86904 Poisson regression Number of obs = 581 LR chi2(3) = 9.66 Prob > chi2 = 0.0217 Log likelihood = -144.86904 Pseudo R2 = 0.0323 ----------------------------------------------------------------------------------- preterm | IRR Std. Err. z P>|z| [95% Conf. Interval] ------------------+---------------------------------------------------------------- log_aZinc | .9636623 .9396929 -0.04 0.970 .1425264 6.515598 | group | Intervention | 5361.1 24921.31 1.85 0.065 .5921151 4.85e+07 | group#c.log_aZinc | Intervention | .0485165 .0747777 -1.96 0.050 .0023656 .9950238 | _cons | .100541 .3040938 -0.76 0.448 .0002678 37.74564 ----------------------------------------------------------------------------------- Note: _cons estimates baseline incidence rate.
Output (2):
Code:
. poisson preterm c.aZinc##i.group ,irr Iteration 0: log likelihood = -144.73568 Iteration 1: log likelihood = -144.71196 Iteration 2: log likelihood = -144.71191 Iteration 3: log likelihood = -144.71191 Poisson regression Number of obs = 581 LR chi2(3) = 9.97 Prob > chi2 = 0.0188 Log likelihood = -144.71191 Pseudo R2 = 0.0333 ---------------------------------------------------------------------------------- preterm | IRR Std. Err. z P>|z| [95% Conf. Interval] -----------------+---------------------------------------------------------------- aZinc | .9961657 .0422645 -0.09 0.928 .9166796 1.082544 | group | Intervention | 14.77571 24.07052 1.65 0.098 .6065829 359.9206 | group#c.aZinc | Intervention | .8558705 .0670031 -1.99 0.047 .7341258 .997805 | _cons | .0977647 .0952735 -2.39 0.017 .0144767 .6602271 ---------------------------------------------------------------------------------- Note: _cons estimates baseline incidence rate.
In this case, may I check how to interpret the result of the intervention group on its own?
- Is that there is a 5000-fold increase in risk of preterm birth in the intervention group relative to the control group when log serum zinc is zero ?
-Is this massive increase in relative risk value of preterm birth has anything to do with low sample size in the intervention group of whom ended up having the outcome when serum zinc is equal to zero?
-Is it recommendable to normalise data if the continuous independent variable of my interest is not normally distributed for the Poisson regression analysis in Stata?
Many thanks for taking time to this post and any insight would be greatly appreciated.

Comment