I have an aesthetic issue when plotting multiple cumulative histograms in python on the same axes. The histograms will end with the final bin rather than continuing until the terminal axis.
Thus when I plot differing populations, to visually show a KS statistic, it ends up looking mediocre.
Edit: as per tom's suggestion, minimal working code.
import pylab as pl
import random as rnd
x1 = [rnd.gauss(0,7) for a in range(100)]
x2 = [rnd.gauss(-3,1) for a in range(100)]
x3 = [rnd.gauss(3,3) for a in range(100)]
pl.hist(x1, cumulative=True, histtype='stepfilled', alpha=0.25)
pl.hist(x2, cumulative=True, histtype='stepfilled', alpha=0.25)
pl.hist(x3, cumulative=True, histtype='stepfilled', alpha=0.25)
pl.show()
Aesthetically, the image should have the histograms continuing on both sides to the ends of the axis, as in the wikipedia image: