I'm looking for an easier way to draw the cumulative distribution line in ggplot.
I have some data whose histogram I can immediately display with
qplot (mydata, binwidth=1);
I found a way to do it at http://www.r-tutor.com/elementary-statistics/quantitative-data/cumulative-frequency-graph but it involves several steps and when exploring data it's time consuming. Is there a way to do it in a more straightforward way in ggplot, similar to how trend lines and confidence intervals can be added by specifying options?
Thanks you.