I am a brand new Stata user and I am not sure I understand the print for my logit. I have the following command in Stata:
logit won i.dum1##(c.srto)
dum1 is a dummy variable 1 or 0 srto is a continuous variable
I get the following result:
------------------------------------------------------------------------------
> won | Coef. Std. Err. z P>|z| [95% Conf. Interval]
> > -------------+----------------------------------------------------------------
> > 1.dum1 | .1482421 .0939667 1.58 0.115 -.0359293 .3324135
> > srto | -.0097423 .0006258 -15.57 0.000 -.0109689 -.0085157
> > |
> > dum1#c.srto |
> > 1 | -.054 .0047478 -11.37 0.000 -.0633056 -.0446944
> > |
> > _cons | -2.02613 .0493487 -41.06 0.000 -2.122852 -1.929408
> ------------------------------------------------------------------------------
I am interpreting this that dum1 effects srto to be -.054 when 1 and -.009 with a difference of .043 is greater when dummy1 =1. Therefore, srto has more effect when the dum1 =1. Since the p value is 0 for both of these they are significant. Secondly, the dum1 srto confidence intervals don't overlap with the srto which makes it a stronger effect. My question is this the correct way to read this result or is the -0.54 the margin or difference between dummy on and dummy off?