I'm estimating a multilevel ordinal logit with one interaction term using clmm. The coefficients I get are interesting and statistically significant and I now want to compute and plot predicted probabilities. In doing so, it may be relevant to consider that all my independent variables are categorical. How can I compute and plot predicted probabilities for models estimated using clmm?
I have looked online relatively extensively and can't find a way to compute and plot predicted probabilities for clmm models. The "effects" package does not seem to work with clmm either.
This is the code I'm using to estimate the model:
mm3c = clmm(var1 ~ var3 + var4 + var6 + var2*var5 + var7 + var6
+ (1|var8), data=my.data)
My goal is to estimate and plot probabilities for the interaction of var2 and var5. Any help would be very appreciated--thanks for your consideration!