I am trying to make a strip plot and need to add the STD or SEM to the bar graphs. I have every thing working.
Currently using the following which gives me everything I want except for the STD/SEM bars.
ggplot(da_results, aes(x=ident, y=logFC))+
geom_beeswarm(data = ~ filter(da_results, abs(P) < 0.9), color = "gray",cex = 0.2) +
geom_beeswarm(aes(color = ident), data = ~ filter(da_results, abs(P) >= lim),cex = 0.2) +
geom_bar(aes(color = ident), data = ~ filter(da_results, abs(P) >= lim),stat = "summary",alpha=0.5) +
coord_flip()+
theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), panel.background = element_blank(), axis.line = element_line(colour = "black"))+geom_hline(yintercept = 0)