Statistic

class lsst.pipe.tasks.diff_matched_tract_catalog.Statistic

Bases: object

A statistic that can be applied to a set of values.

Methods Summary

doc()

A description of the statistic

name_short()

A short name for the statistic, e.g.

value(values)

The value of the statistic for a set of input values.

Methods Documentation

abstract doc() str

A description of the statistic

abstract name_short() str

A short name for the statistic, e.g. for a table column name

abstract value(values)

The value of the statistic for a set of input values.

Parameters:
valuesCollection [float]

A set of values to compute the statistic for.

Returns:
statisticfloat

The value of the statistic.