I'm currently analysing an experiment where animals were presented with a stimulus under two different treatments (Po
& Br
) using a GLM. RespYN
is a binary response variable showing whether the animal responded to the stimulus.
glm(RespYN ~ Treatment + Gender + Length_Diff + Cockroach_ID, data = data, family = binomial(link = "logit"))
I haven't really dealt with log odds at all before, so I'm asking for some clarification in interpreting the coefficient estimates
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 1.74016 0.53317 3.264 0.0011 **
TreatmentPo -4.40331 0.54346 -8.102 5.39e-16 ***
My understanding is that this means that Treatment
having the value of Po
is associated with a decrease in the log odds of observing a positive response of -4.40331 comapred to treatment having a value of Br
.
However I'm a) not certain I've understood this correctly and b) not sure how to translate this into something meaningful i.e. what is the decrease in odds (not log odds) or probability.
Any help is greatly appreciated!