Trees | Indices | Help |
|
---|
|
object --+ | RunningMean
Accumulates the approximate mean and standard deviation of a partial dataset.
Example:
>>> accumulator = RunningMean() >>> for x in dataset: >>> accumulator.add(x) >>> print "after %d points: %f +/- %f" % (accumulator.n, accumulator.mean, accumulator.stdDev)
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
stdDev | |||
Inherited from |
|
x.__init__(...) initializes x; see help(type(x)) for signature
|
|
stdDev
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Dec 15 19:07:38 2017 | http://epydoc.sourceforge.net |