I am trying to thicken the lines of my plot with geom_pointrange.
ggplot( data, aes(x = xvar, ymin = ymin, y = yvar, ymax = ymax))+
geom_pointrange(shape = 21, size = 1.5, fatten = 0.75,
position = position_dodge(width = 0.5), color = "#5a2c76")
I've tried playing with the fatten and size variables as well as adding linewidth, width, etc. all over the code. The widths of the lines don't change.