diff options
Diffstat (limited to 'math_utils.py')
| -rw-r--r-- | math_utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math_utils.py b/math_utils.py index 188d323..31610ba 100644 --- a/math_utils.py +++ b/math_utils.py @@ -9,7 +9,8 @@ from typing import List, Optional class NumericPopulation(object): - """A running median computer. + """A numeric population with some statistics such as median, mean, pN, + stdev, etc... >>> pop = NumericPopulation() >>> pop.add_number(1) @@ -29,6 +30,7 @@ class NumericPopulation(object): 3 >>> pop.get_percentile(60) 7 + """ def __init__(self): |
