I want to visualize a mixed effects ordinal regression, fit using the clmm function within the ordinal package in r. I am using the effects package. However, I do not want the intercepts to be displayed on the plot (thresholds between response categories - seen as dashed horizontal lines below). Any guidance on how I can omit them?
Example code and plot:
library(ordinal)
library(MASS)
library(effects)
mod <- clmm(poverty ~ age + (1|country), data = WVS)
plot(Effect("age", mod, latent = TRUE))

