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
You can remove the border using the colour argument:
colour
ggplot(d, aes(Time, y, color = Object, fill = Object)) + geom_line(size = 2) + geom_ribbon(aes(ymin = lower, ymax = upper), alpha = .3, colour = NA)