diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-04-07 16:20:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-07 16:20:03 (GMT) |
commit | 6463ba3061bd311413d2951dc83c565907e10459 (patch) | |
tree | 9450cc1c68b6bab42bd81c32901c28055928dfbc /Doc/whatsnew/3.8.rst | |
parent | 9d7b2c0909b78800d1376fd696f73824ea680463 (diff) | |
download | cpython-6463ba3061bd311413d2951dc83c565907e10459.zip cpython-6463ba3061bd311413d2951dc83c565907e10459.tar.gz cpython-6463ba3061bd311413d2951dc83c565907e10459.tar.bz2 |
bpo-27181: Add statistics.geometric_mean() (GH-12638)
Diffstat (limited to 'Doc/whatsnew/3.8.rst')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index ac20ee3..4347b3e 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -322,6 +322,9 @@ Added :func:`statistics.fmean` as a faster, floating point variant of :func:`statistics.mean()`. (Contributed by Raymond Hettinger and Steven D'Aprano in :issue:`35904`.) +Added :func:`statistics.geometric_mean()` +(Contributed by Raymond Hettinger in :issue:`27181`.) + Added :func:`statistics.multimode` that returns a list of the most common values. (Contributed by Raymond Hettinger in :issue:`35892`.) |