|
__init__(self,
bin_width=1,
data=[ ] )
Initializes the histogram with the given data set. |
|
|
|
__lshift__(self,
data)
Adds a single number or elements of an iterable to the histogram. |
|
|
|
__plot__(self,
context,
bbox,
palette,
*args,
**kwds)
Plotting support |
|
|
|
__str__(self)
Returns the string representation of the histogram |
|
|
|
_get_bin(self,
num,
create=False)
Returns the bin index corresponding to the given number. |
|
|
|
|
|
|
|
|
|
|
|
add(self,
num,
repeat=1)
Adds a single number to the histogram. |
|
|
|
add_many(self,
data)
Adds a single number or elements of an iterable to the histogram. |
|
|
|
bins(self)
Generator returning the bins of the histogram in increasing order |
|
|
|
clear(self)
Clears the collected data |
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__
|