I'd like to plot, using ggplot / geom_point, a change in scores with typical error as well as confidence intervals. I'd like the confidence interval on each point to be set at .93 for upper and lower CI (which is 90% CI).
I've used the following dummy data:
Here's what I've used thus far and have gotten each point as well as typical error to plot just fine, but my CI attempts have not worked.
ggplot(Testing)+
geom_point(aes(Change,Athlete), size = 3)+
theme_classic()+
xlab("Score Change")+
scale_x_continuous(limits = c(-12,12))+
annotate("rect", xmin=-1.8, xmax=1.8, ymin=0, ymax=Inf, alpha = .3)`
Any help to get the CI for each point would be great help.
The plot looks like this so far Plot