It took me a while to break through ggplot2 2.0-helpfiles. For this occasion, they are here . The new version has the argument fun.args . So, I was able to run this code with the updated version of ggplot and create the desired graph:
ggplot(aes(y = mpg, x = cyl), data = mtcars) + geom_point(color = "orange") + geom_line(stat = 'summary', fun.y = "quantile", fun.args=list(probs=0.1))
source share