|
__init__(self,
coordinate,
bin_ords,
valuedict=None,
tolerance=1e-12)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
resolve_bin_index(self,
ordinate)
Find bin number (index) associated with ordinate |
source code
|
|
|
__call__(self,
ordinate)
Return content of the bin that ordinate resolves to. |
source code
|
|
|
|
|
__setitem__(self,
bin_index,
value)
Set value of a given bin number (index). |
source code
|
|
|
increment(self,
ordinate,
inc=1)
Increment the bin corresponding to the ordinate argument. |
source code
|
|
|
bin(self,
values)
Increment bin contents according to values passed. |
source code
|
|
|
clear(self)
Reset all bins to have zero contents. |
source code
|
|
|
|
|
|
|
|
|
to_arrays(self)
Convert to two arrays of bin indices and values |
source code
|
|
|
|
|
|
|
|
|
std(self)
Standard deviation of binned data |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|