Hi all,
I have a cross-sectional dataset (sample size:734) and use a poisson model. The square term of iv1 is insignificant, but when I graph the interaction effect, I can observe a inverted U-shape curve. How comes it make that?
Then, I add another control variable lnctrl3 into the model, the square term now is significant but the graph seems difficult to interpret. Actually, if we only observe the graphs, both of them are typical inverted U-shaped curve, but why the former yield an insignificant coefficient while the latter a significant?
Thanks in advance,
David
I have a cross-sectional dataset (sample size:734) and use a poisson model. The square term of iv1 is insignificant, but when I graph the interaction effect, I can observe a inverted U-shape curve. How comes it make that?
Code:
poisson sale c.iv1##c.iv2 c.iv1#c.iv1 lnctrl1 lnctrl2 i.indcode, vce(robust) marginscontplot iv1 iv2, at1(0(1)18) at2(0(0.2)1)
Then, I add another control variable lnctrl3 into the model, the square term now is significant but the graph seems difficult to interpret. Actually, if we only observe the graphs, both of them are typical inverted U-shaped curve, but why the former yield an insignificant coefficient while the latter a significant?
Code:
poisson sale c.iv1##c.iv2 c.iv1#c.iv1 lnctrl1 lnctrl2 lnctrl3 i.private i.indcode, vce(robust) marginscontplot iv1 iv2, at1(0(1)18) at2(0(0.2)1)
Thanks in advance,
David
Comment