Closed robdmc closed 9 years ago
Something like this should work
from statsmodels.distributions.empirical_distribution import ECDF ecdf = ECDF(df_error.z) x = sorted(df_error.z) y = ecdf(x) pl.plot(x, y) pl.plot(x, 1-y)
Something like this should work