diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-07-14 10:42:37 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-08-12 22:36:16 -0600 |
commit | f8244a6888863cb40fc93b272b6055141df4b322 (patch) | |
tree | 75c7978f26d478b7d2bd8cd0bd2c0bbf8458e66e /doc | |
parent | eac46b4e6ca25ef9450c3a227818877f3de10e98 (diff) | |
download | numpy-f8244a6888863cb40fc93b272b6055141df4b322.tar.gz |
DOC: Document nanmean, nanvar, and nanstd in the 1.8.0 release notes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.8.0-notes.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/release/1.8.0-notes.rst b/doc/release/1.8.0-notes.rst index 6fd3917da..834a23f99 100644 --- a/doc/release/1.8.0-notes.rst +++ b/doc/release/1.8.0-notes.rst @@ -140,7 +140,7 @@ arrays instead of only in simple indices. This means that ``array[np.newaxis, [0, 1]]`` will now work as expected. New functions `full` and `full_like` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New convenience functions to create arrays filled with a specific value; complementary to the existing `zeros` and `zeros_like` functions. @@ -155,6 +155,13 @@ elements smaller than the sorted elements will placed before the it and all equal or larger behind it. This has a time complexity of O(n) compared to O(n log(n)) of a full sort. +New functions `nanmean`, `nanvar` and `nanstd` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +New nan aware statistical functions are added. In these functions the +results are what would be obtained if nan values were ommited from all +computations. + C-API ~~~~~ |