Percentile#

class lsst.pipe.tasks.statistic.Percentile(percentile: float)#

Bases: Statistic

An arbitrary percentile.

Parameters#

percentilefloat

A valid percentile (0 <= p <= 100).

Attributes Summary

Methods Summary

name()

value(values)

Return the value of the statistic given a set of values.

Attributes Documentation

percentile: float = <dataclasses._MISSING_TYPE object>#

Methods Documentation

classmethod name()#
value(values)#

Return the value of the statistic given a set of values.

Parameters#

valuesCollection [float]

A set of values to compute the statistic for.

Returns#

statisticfloat

The value of the statistic.