I am using ggplot to plot time course data (fixation proportions over time to different objects on the screen) and want to use a ribbon to show the SE, but the ribb
ggplot
Here you go
ggplot(d, aes(Time, y, fill=Object)) + geom_line(size=2, aes(colour = Object)) + geom_ribbon(aes(ymin=lower, ymax=upper), alpha=.3)