How do I set each category of values on the x-axis not to overlap?(cen-con-lib)
Also, I want to change the color of each category (e.g., assigning con to red) How can I change it? enter image description here `
## Visualization
STM_estimate %>%
ggplot(aes(x=covariate.value, y=estimate, color= covariate.value))+
geom_point(size=2)+
geom_errorbar(aes(ymin=ci.lower, ymax=ci.upper),width = .2)+ #error bar-geom_errorbar
theme_bw()+
scale_color_fivethirtyeight()+
facet_grid(~topic)
`
Thank you in advance!!