From: Scott Gasch Date: Fri, 18 Nov 2022 16:38:40 +0000 (-0800) Subject: Update docs. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=e4bb7822b61a24184e9296bdace25043ec60865e;p=pyutils.git Update docs. --- diff --git a/src/pyutils/math_utils.py b/src/pyutils/math_utils.py index 2a56b63..8ac6b10 100644 --- a/src/pyutils/math_utils.py +++ b/src/pyutils/math_utils.py @@ -17,8 +17,8 @@ class NumericPopulation(object): """This object *store* a numerical population in a way that enables relatively fast addition of new numbers (:math:`O(2log_2 n)`) and instant access to the median value in the population (:math:`O(1)`). It also provides other population - summary statistics such as the :meth:`mode`, :meth:`get_percentile` and - :meth:`stdev`. + summary statistics such as the :meth:`get_mode`, :meth:`get_percentile` and + :meth:`get_stdev`. .. note::