hc99's picture
Add files using upload-large-folder tool
caf9538 verified
``Axes.ecdf``
~~~~~~~~~~~~~
A new Axes method, `~.Axes.ecdf`, allows plotting empirical cumulative
distribution functions without any binning.
.. plot::
:include-source:
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots()
ax.ecdf(np.random.randn(100))