Start with developing a statistical analysis plan that is not informed by any examination of associations between X and Y. Pre-specify individual and chunk tests (e.g., LR tests) and contrasts, and don’t make contrasts of interest conditional on something else being arbitrarily “significant”. Comparisons with reference groups, although they are the less accurate Wald tests when using this function, are provided automatically with summary()
. But take control using contrast(f, list(group='B'), list(group='A'))
to get the B-A contrast on the log odds scale. Antilog to get the B:A odds ratio. Best is to get LR tests and profile likelihood confidence intervals by specifying LR as the type of test to be done by contrast()
.
You get log odds ratios (differences in log odds) against a reference group when printing the fit object. Whether anti-logging the \beta's or the contrast()
's these are odds ratios.
No that’s not what ORs mean. Instead a C:B OR is the ratio of odds that Y \geq y if in C to the odds that Y \geq y if in group B, for any y other than the lowest y. This is the identical interpretation to a binary logistic model except you replace y with 1.