From 61faaa42ace9ecae318dd93069db743b7d49a0c9 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 10 Feb 2022 10:38:48 -0800 Subject: Add percentile and change name of RunningMedian class. --- histogram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'histogram.py') diff --git a/histogram.py b/histogram.py index 9c07df9..dd47319 100644 --- a/histogram.py +++ b/histogram.py @@ -32,7 +32,7 @@ class SimpleHistogram(Generic[T]): NEGATIVE_INFINITY = -math.inf def __init__(self, buckets: List[Tuple[Bound, Bound]]): - from math_utils import RunningMedian + from math_utils import NumericPopulation self.buckets: Dict[Tuple[Bound, Bound], Count] = {} for start_end in buckets: @@ -40,7 +40,7 @@ class SimpleHistogram(Generic[T]): raise Exception("Buckets overlap?!") self.buckets[start_end] = 0 self.sigma: float = 0.0 - self.stats: RunningMedian = RunningMedian() + self.stats: NumericPopulation = NumericPopulation() self.maximum: Optional[T] = None self.minimum: Optional[T] = None self.count: Count = 0 -- cgit v1.3