class documentation

class Distribution(Metric): (source)

View In Hierarchy

A metric to track simple statistics from a distribution of values.

Method __init__ Initialize the metric and register it under the specified name.
Method add Add a value to the distribution.
Method _mean Undocumented
Method _merge Merge data from another metric of the same type.
Method _stdev Undocumented
Method _summary Return a string summarizing the value of the metric.
Instance Variable _count Undocumented
Instance Variable _max Undocumented
Instance Variable _min Undocumented
Instance Variable _squared Undocumented
Instance Variable _total Undocumented

Inherited from Metric:

Method __str__ Undocumented
Property name Undocumented
Instance Variable _name Undocumented
def __init__(self, name): (source)

Initialize the metric and register it under the specified name.

def add(self, value): (source)

Add a value to the distribution.

def _mean(self): (source)

Undocumented

def _merge(self, other): (source)

Merge data from another metric of the same type.

def _stdev(self): (source)

Undocumented

def _summary(self): (source)

Return a string summarizing the value of the metric.

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented