import numpy as np import seaborn as sns x = np.random.randn(200) kwargs = {'cumulative': True} sns.distplot(x, hist_kws=kwargs, kde_kws=kwargs)