Thank you for checking this post out!
I'll use the following example to discuss the challenge I'm facing:
My logistic-exposure model asks whether a study species' nest success (1/0) can be explained by the density of the overstory (a proportion) around each nest, and the distance (meters, continuous) from the nest to the edge of the habitat patch, i.e.:
NestSuccess ~ OverstoryDen + DisToEdge
The independent variables are scaled - mean subtracted, divided by standard deviation, using R function scale().
The model output gives me:
OverstoryDen estimate = 2.91
DisToEdge estimate = 0.87
I am interested in interpreting the output in real, useful terms, but I'm not sure I'm getting this right. This is what I've done:
Let's look at OverstoryDen first: Odds Ratio = e^2.91 = 18.36
So, this implies that the probability of a nest succeeding is 18.36 greater in areas where overstory density if one standard deviation greater, correct?
Now, here's the part that stumps me: The standard deviation of OverstoryDen is 0.146, and, recall, this parameter is a proportion, i.e. 0 - 1. So, can I say anything more general/relevant about the relationship between nest success and OverstoryDen? i.e. would it be prudent to divide 18.36 by 0.146 and say that for every 1% increase in density the probability of success increases by a factor of 2.26? Or is there a linearity issue here?
Similarly, for DisToEdge, the odds ratio = 2.39, sd of the variable = 14 meters, so would it be prudent to divide per meter and say that success increases by 17.1% with each added meter of distance?
Thanks so much for any help you can offer!