I run 15 different regression models (it is basically the same regression with the same variables, just different years) and plot the coefficents using plot_coefs.
In the plot, however, coefficents are only displayed for the first 12 of the 15 models. The legend on the other hand shows all models.
My command is:
cdu_1965b <- glm(cduwahl ~ alter + bildung + mann + konfessi
, data = Wahl1965, family = "binomial")
cdu_1969b <- glm(cduwahl ~ alter + bildung + mann + konfessi
, data = Wahl1969, family = "binomial")
.... (same for other 13 models)
library(jtools)
plot_coefs (cdu_1965b,cdu_1969b, ...other models..., colors = "Rainbow", omit.coefs = c("(Intercept)", "altermittel", "alteralt", "bildunghoch", "bildungmittel", "bildungalt", "mann"))
Is there a maximum number that can be plotted?
Thank you!
What else could I try?