I am trying to perform an ordinal logistic regression in R and have recently attempted to use clmm2() function from the ordinal package. Unfortunately I've come to a roadblock.
How do I assess model fit?
How do I test multiple hypotheses by comparing AIC values of multiple models if I also need to assess the proportional odds assumption?
The data I'm dealing with: The ordered response variable is the consistency of bird food availability. We asked respondents to give us the percent days food was available for each season. I then bucketed it into none, pulsed, constant. So I have four rows for each respondent, making respondent a random variable in the model.
I have multiple predictors: season, age, etc.
anova) to compare models, assuming the predictors are the same between the two models. – Erik Ruzek Apr 21 '20 at 13:08clmm2and then usemixorto test the non-proportional odds assumption. Can you post yourclmm2andmixorcode so we can help with diagnosis? – Erik Ruzek Apr 21 '20 at 19:57clmm2using thenominal = ~ predictor_nameoption. Then you can run a likelihood ratio test usinganovato determine whether the non-proportional odds model provides a better fit to the data. It is not clear to me if you have to do this for each predictor separately (I think that is the case). Inmixoryou can allow for multiple predictors to have interactions with the thresholds, although estimation may take a while. – Erik Ruzek Apr 24 '20 at 19:33clmm2, then use that. – Erik Ruzek Apr 28 '20 at 15:39