Enhanced histogram function, providing adaptive binnings
This is a histogram function that enables the use of more sophisticated algorithms for determining bins. Aside from the bins argument allowing a string specified how bins are computed, the parameters are the same as numpy.histogram().
Parameters: | a : array_like
bins : int or list or str (optional)
range : tuple or None (optional)
weights : array_like, optional
other keyword arguments are described in numpy.histogram(). |
---|---|
Returns: | hist : array
bin_edges : array of dtype float
|
See also
numpy.histogram