File size: 294 Bytes
caf9538 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ``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))
|