summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-03-20 21:58:42 -0400
committerCharles Harris <charlesr.harris@gmail.com>2015-03-20 21:58:42 -0400
commit59be9173bd909c4dc472b17d8c9f7f62cd11f8bd (patch)
treef33893728b2150b5d673e4708ca302beb04752e7 /doc
parenta55c7fdfb45451b9b0334b68569548db42c3ac06 (diff)
parent594c64cedc3e521bc223fb90f29f22b034de3839 (diff)
downloadnumpy-59be9173bd909c4dc472b17d8c9f7f62cd11f8bd.tar.gz
Merge pull request #5683 from matthew-brett/deprecate-bias-ddof
BUG: deprecation for ignored corrcoef args
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.10.0-notes.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst
index d4aaec878..f6e8c09ef 100644
--- a/doc/release/1.10.0-notes.rst
+++ b/doc/release/1.10.0-notes.rst
@@ -237,3 +237,18 @@ deprecated.
pkgload, PackageLoader
~~~~~~~~~~~~~~~~~~~~~~
These ways of loading packages are now deprecated.
+
+bias, ddof arguments to corrcoef
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The values for the ``bias`` and ``ddof`` arguments to the ``corrcoef``
+function canceled in the division implied by the correlation coefficient and
+so had no effect on the returned values.
+
+We now deprecate these arguments to ``corrcoef`` and the masked array version
+``ma.corrcoef``.
+
+Because we are deprecating the ``bias`` argument to ``ma.corrcoef``, we also
+deprecate the use of the ``allow_masked`` argument as a positional argument,
+as its position will change with the removal of ``bias``. ``allow_masked``
+will in due course become a keyword-only argument.