I'm trying to plot and add error bars, and somehow today it decided to plot like this. I'm clearly missing something, what is wrong with these error bars?!
hits <- ggplot(coverage_data, aes(Phenotype, Hits, fill=Phenotype)) +
geom_bar(stat="identity",
position=position_dodge()) +
geom_errorbar(aes(ymin=Hits,
ymax=Hits+STD),
width=0.2)+
theme_classic()
hits
Cheers!