This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Separates the range into several bins and returns the number of instances of a in each bin. This histogram is based on numpy’s histogram but has a larger range by default if default limits is not set.
Parameters : | a: array_like :
numbins: int, optional :
defaultlimits: tuple (lower, upper), optional :
weights: array_like, optional :
printextras: bool, optional :
|
---|---|
Returns : | histogram: ndarray :
low_range: float :
binsize: float :
extrapoints: int :
|
See also