Is there a way to do this? I cannot seem an easy way to interface pandas series with plotting a CDF.
This is the easiest way.
import pandas as pd df = pd.Series([i for i in range(100)]) df.hist( cumulative = True )
Image of cumulative histogram