diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-04-23 07:06:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 07:06:35 (GMT) |
commit | 9013ccf6d8037f6ae78145a42d194141cb10d332 (patch) | |
tree | 9a1bf5b8739569012d9d3ecbf50b739936b730e2 /Doc/whatsnew | |
parent | d437012cdd4a38b5b3d05f139d5f0a28196e4769 (diff) | |
download | cpython-9013ccf6d8037f6ae78145a42d194141cb10d332.zip cpython-9013ccf6d8037f6ae78145a42d194141cb10d332.tar.gz cpython-9013ccf6d8037f6ae78145a42d194141cb10d332.tar.bz2 |
bpo-36546: Add statistics.quantiles() (#12710)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index f866f9c..bd7ad3f 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -337,6 +337,10 @@ Added :func:`statistics.geometric_mean()` Added :func:`statistics.multimode` that returns a list of the most common values. (Contributed by Raymond Hettinger in :issue:`35892`.) +Added :func:`statistics.quantiles` that divides data or a distribution +in to equiprobable intervals (e.g. quartiles, deciles, or percentiles). +(Contributed by Raymond Hettinger in :issue:`36546`.) + Added :class:`statistics.NormalDist`, a tool for creating and manipulating normal distributions of a random variable. (Contributed by Raymond Hettinger in :issue:`36018`.) |