diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2021-11-21 14:39:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 14:39:26 (GMT) |
commit | d2b55b07d2b503dcd3b5c0e2753efa835cff8e8f (patch) | |
tree | 91c10668dcb58309c6ac4a683075f00d38bdbb71 /Misc/NEWS.d/next | |
parent | 2afa1a12669e1812a9fe8130c8f60052c4ad8bf8 (diff) | |
download | cpython-d2b55b07d2b503dcd3b5c0e2753efa835cff8e8f.zip cpython-d2b55b07d2b503dcd3b5c0e2753efa835cff8e8f.tar.gz cpython-d2b55b07d2b503dcd3b5c0e2753efa835cff8e8f.tar.bz2 |
bpo-45766: Add direct proportion option to linear_regression(). (#29490)
* bpo-45766: Add direct proportion option to linear_regression().
* Update 2021-11-09-09-18-06.bpo-45766.dvbcMf.rst
* Use ellipsis to avoid round-off issues.
* Update Misc/NEWS.d/next/Library/2021-11-09-09-18-06.bpo-45766.dvbcMf.rst
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
* Update signature in main docs
* Fix missing comma
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-11-09-09-18-06.bpo-45766.dvbcMf.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-11-09-09-18-06.bpo-45766.dvbcMf.rst b/Misc/NEWS.d/next/Library/2021-11-09-09-18-06.bpo-45766.dvbcMf.rst new file mode 100644 index 0000000..b2e9c7e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-11-09-09-18-06.bpo-45766.dvbcMf.rst @@ -0,0 +1 @@ +Added *proportional* option to :meth:`statistics.linear_regression`. |