diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2024-02-25 23:46:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 23:46:47 (GMT) |
commit | 6d34eb0e36d3a7edd9e7629f21da39b6a74b8f68 (patch) | |
tree | 0ac0ed92cdfe54d2f9ff6b0e387c424c8324dcf0 /Doc/whatsnew | |
parent | 6a3236fe2e61673cf9f819534afbf14a18678408 (diff) | |
download | cpython-6d34eb0e36d3a7edd9e7629f21da39b6a74b8f68.zip cpython-6d34eb0e36d3a7edd9e7629f21da39b6a74b8f68.tar.gz cpython-6d34eb0e36d3a7edd9e7629f21da39b6a74b8f68.tar.bz2 |
gh-115532: Add kernel density estimation to the statistics module (gh-115863)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index a393a1d..ca5a0e7 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -476,6 +476,14 @@ sqlite3 for filtering database objects to dump. (Contributed by Mariusz Felisiak in :gh:`91602`.) +statistics +---------- + +* Add :func:`statistics.kde` for kernel density estimation. + This makes it possible to estimate a continuous probability density function + from a fixed number of discrete samples. + (Contributed by Raymond Hettinger in :gh:`115863`.) + subprocess ---------- |