We have been working on a survival analysis. We are examining tree seedling survival over a decade with annual to biannual census intervals. We have been using the package coxme in R for a mixed effects Cox model. Covariates include time-dependent variables and time-independent covariates and a random intercept term for species to account for inherent life history differences among species. All continuous covariates are standardized to one standard deviation unit of change. The model returns sensible parameter estimates from what we know about the system. The strongest predictor covariate of survival has a hazard ratio around 4. This covariate is continuous and time-dependent, but happens to only take one or two values for all individuals per census period though it varies widely between census periods. We wanted to examine how mortality rate related to this strongest covariate. When we regress census period mortality against this variable we find no linear relationship.
We tried logistic regression to look at how this variable behaves in terms of odd ratios. We used the package lme4 and included random intercept terms for species and census in the glmer function. We also used a offset of log(time) and the binomial family log-log link. This model suggests that there is no significant effect of this variable on the odd ratio for survival.
My question concerns the inherent differences between hazard ratio and odds ratio. I have read that the hazard ratio is an instantaneous event rate. I think the odds ratio is more of an overall exposure variable. But I haven't been able to discern how that might result in such different parameter estimate between the models. All of the other variables included in the models are consistent in relative effect size and significance. Which leads me to think that the behavior has something to do with the lack of variability within a census period.
Can someone help me understand the differences between hazard rates and odds in these two models and offer any suggestions why they may return such different results?