I'd like to plot multiple models side-by-side using sjPlot::plot_models. Yet, when I run the following code:
set.seed(10)
a <- sample(c("low", "medium", "high"), 100, replace = T)
b <- rnorm(100)
c <- rnorm(100)
mod1 <- lm(b ~ a)
mod2 <- lm(c ~ a)
sjPlot::plot_models(mod1, mod2, grid = T)
Then the left plot will be red and the right plot will be blue. Is there a way to get the positive coefficients to be blue and the negatives (lower right) to be red?