summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2023-03-14 01:06:43 (GMT)
committerGitHub <noreply@github.com>2023-03-14 01:06:43 (GMT)
commit457e4d1a516c2b83edeff2f255f4cd6e7b114feb (patch)
tree51ca85d76d69c13f8f88aef3bd5daa613c735ad7 /Misc
parent61479d46848bc7a7f9b571b0b09c4a4b4436d839 (diff)
downloadcpython-457e4d1a516c2b83edeff2f255f4cd6e7b114feb.zip
cpython-457e4d1a516c2b83edeff2f255f4cd6e7b114feb.tar.gz
cpython-457e4d1a516c2b83edeff2f255f4cd6e7b114feb.tar.bz2
GH-102670: Use sumprod() to simplify, speed up, and improve accuracy of statistics functions (GH-102649)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-03-13-18-27-00.gh-issue-102670.GyoThv.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-03-13-18-27-00.gh-issue-102670.GyoThv.rst b/Misc/NEWS.d/next/Library/2023-03-13-18-27-00.gh-issue-102670.GyoThv.rst
new file mode 100644
index 0000000..3de09f8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-03-13-18-27-00.gh-issue-102670.GyoThv.rst
@@ -0,0 +1,2 @@
+Optimized fmean(), correlation(), covariance(), and linear_regression()
+using the new math.sumprod() function.