Package pygeodesy :: Module fstats :: Class _FstatsBase
[frames] | no frames]

Class _FstatsBase

  object --+        
           |        
named._Named --+    
               |    
    _FstatsNamed --+
                   |
                  _FstatsBase
Known Subclasses:

(INTERNAL) Base running stats class.

Instance Methods
 
fadd_(self, *xs, **sample)
Accumulate and return the current count.
 
fmean_(self, *xs)
Accumulate and return the current mean.
 
fstdev_(self, *xs, **sample)
Accumulate and return the current standard deviation.
 
fvariance_(self, *xs, **sample)
Accumulate and return the current variance.

Inherited from _FstatsNamed: __add__, __float__, __int__, __len__, __neg__, __radd__, __str__, copy, fcopy

Inherited from named._Named: _DOT_, __imatmul__, __matmul__, __repr__, __rmatmul__, attrs, classof, dup, rename, toRepr, toStr, toStr2

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties

Inherited from named._Named: classname, classnaming, name, named, named2, named3, named4

Inherited from object: __class__

Method Details

fadd_ (self, *xs, **sample)

 

Accumulate and return the current count.

See Also: Method fadd.

fmean_ (self, *xs)

 

Accumulate and return the current mean.

See Also: Method fmean.

fstdev_ (self, *xs, **sample)

 

Accumulate and return the current standard deviation.

See Also: Method fstdev.

fvariance_ (self, *xs, **sample)

 

Accumulate and return the current variance.

See Also: Method fvariance.