Primary question: How to estimate odds ratios +/- error for an interaction between two continuous variables?
Purpose: To interpret the effect size of the interaction.
In the interest of full disclosure, I posted this question on Cross Validated last week but have not gotten any replies: http://stats.stackexchange.com/question ... nuous-vari
Results from Huggins robust design:
- Code: Select all
estimate se lcl ucl
S:(Intercept) -0.7805226 0.7506744 -2.2518445 0.6907993
S:grass -4.6189001 2.0282830 -8.5943350 -0.6434653
S:shrub 0.0120384 0.0295291 -0.0458387 0.0699155
S:season2014 0.7729132 0.5820680 -0.3679401 1.9137665
S:grass:shrub 0.1835990 0.0894282 0.0083198 0.3588782
Based on a Cross Validated post (http://stats.stackexchange.com/question ... regression), I calculated the OR for grass when shrub is held constant as:
1) exp(.18)=1.19, exp(-4.62) = 0.0098
2) Grass OR when shrub = 1: 1.19^1 * 0.0098 = 0.01
- Grass OR when shrub = 15: 1.19^15 * 0.0098 = 0.15
- Grass OR when shrub = 30: 1.19^30 * 0.0098 = 2.18
Seems to make sense, but when I apply the same steps to the LCL of the betas, the OR is always essentially zero, which is not what I would expect:
1) exp(0.008) = 1.01, exp(-8.59) = 0.0002
2) When shrub = 1: 1.01^1 * 0.0002 = 0.0002
- When shrub = 30: 1.01^30 * 0.0002 = 0.0003
The OR's are huge when I calculate them for the UCL, e.g.:
When shrub = 30, OR = 25848.
I'm using these probability predictions (+/- 95% CI) from this model to help determine my expectation for the OR's, but maybe that's part of my problem. Based on this plot, I would expect the OR for grass to be at least marginally significantly positive (LCL of OR >=1) at the highest values of shrub cover, but that's far from what the OR's are showing above:

Thanks!
Joe