summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-05-13 12:04:16 -0400
committerCharles Harris <charlesr.harris@gmail.com>2015-05-13 12:04:16 -0400
commit9ceb5cdd6a7bd0c3402a7cd04a549adea9d7be41 (patch)
tree5810dc89279ffa705d722ba37890448723c80957 /doc
parent4fee91335ddd267c36935b26c126113c217a74e1 (diff)
parentd87d2ca584b888bcc48fd2fd25c07eb0c08c0939 (diff)
downloadnumpy-9ceb5cdd6a7bd0c3402a7cd04a549adea9d7be41.tar.gz
Merge pull request #4960 from tpoole/weighted_cov
ENH: add a weighted covariance calculation.
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.10.0-notes.rst12
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst
index 0c3ad31e0..c4ff2e4b4 100644
--- a/doc/release/1.10.0-notes.rst
+++ b/doc/release/1.10.0-notes.rst
@@ -119,8 +119,8 @@ extensions is now performed in *n* parallel processes.
The parallelization is limited to files within one extension so projects using
Cython will not profit because it builds extensions from single files.
-*genfromtxt* has an new ``max_rows`` argument
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+*genfromtxt* has a new ``max_rows`` argument
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A ``max_rows`` argument has been added to *genfromtxt* to limit the
number of rows read in a single call. Using this functionality, it is
possible to read in multiple arrays stored in a single file by making
@@ -145,6 +145,14 @@ you will not be able to emit the warning or test it. The context manager
``clear_and_catch_warnings`` clears warnings from the module registry on entry
and resets them on exit, meaning that warnings can be re-raised.
+*cov* has new ``fweights`` and ``aweights`` arguments
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+The ``fweights`` and ``aweights`` arguments add new functionality to
+covariance calculations by applying two types of weighting to observation
+vectors. An array of ``fweights`` indicates the number of repeats of each
+observation vector, and an array of ``aweights`` provides their relative
+importance or probability.
+
Improvements
============