I have successfully used the plot_model
function of sjplot
to plot a multinomial logistic regression model. The regression contains an outcome (Veto Type, with 3 levels) and 2 continuous predictors (Coalition Size and coalition Coalescence). I have also changed the values of coalition Coalescence in the plot_model
so as to plot predicted effect outcomes based on the coalition Coalescence mean value and SDs
plot_model(model9, type = "pred", terms = c("CoalitionPercentageAmorim", "CoalescenceAmorim [0,1]"), mdrt.values = "meansd", ci.lvl=0.00, title = "Figure: Predicted Probability of Partial Vetoes of PLs", axis.title = c("Coalition Size", "Predicted Probability"), legend.title = "COALITION COALESCENCE")
However, I want the graph to only display one Veto Type level at a time. I have tried using rm.terms
, and subsetting in multiple ways but so far I have not been successful. I would appreciate any help or advice regarding how to display only one level at a time.
Thanks!
addition
I tried using gtable
as suggested here but this produced a 1/3 graph rather than one that cover the whole graph. I would still prefer a full graph for each of the levels.
Instead of trying to fiddle around with the plot object via the
gtable
one option would be to extract the model data usingget_model_data
and build your desired plot from scratch usingggplot2
.Using some fake random example data.