|
|
__init__(self,
data,
blueness=2.0,
rng=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
check(self,
fcn)
This exists to let you run some kind of read-only check on the stored
data. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
list(whatever), with length==n
|
|
|
whatever (not a list!)
|
peek(self)
Inspect (but do not remove) the next item to be picked. |
source code
|
|
|
tuple(list, list)
|
split(self,
n)
Split the data set into two parts, of size n and len(data)-n. |
source code
|
|
|
|
__iter__(self)
This iterator will produce samples forever. |
source code
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|