I'm attempting to show a bar graph for some ANOVA data, and I've done so with GGPlot2. The error bars are showing up fine, but there are no bars to be seen no matter what I try.
This is the code I've tried:
ggplot(data = mydata, aes(x = StressCond, y = StressScore))+
geom_bar(stat = "summary", fun = mean, aes(fill = CRGroup), position = "dodge")+
geom_errorbar(stat = "summary", fun.data = mean_se, width = 0.25,
aes(group = CRGroup), position = position_dodge(0.9))
I'm expecting something like this:
But I'm getting this: