I'm trying to change the color of coefficients in a forest plot using modelplot(), so the that positive values are one color, and negative values another, as with the separate plotmodel() function,
library(modelsummary)
modelplot(
model1,
coef_omit = 'Interc'
) +
xlim(-0.75, 0.75) +
theme_gray() +
labs(
x = "Coefficient estimates and \n 95 pc confidence intervals"
)
but I can't figure out how to do it. I've experimented using scale_colour_gradientn() and similar but they don't work.
Does anyone have any suggestions for this?
thanks
You can do this by mapping the value
estimate > 0
to the color aesthetic:Created on 2022-12-17 with reprex v2.0.2