summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Taylor <juliantaylor108@gmail.com>2014-06-02 21:18:18 +0200
committerJulian Taylor <juliantaylor108@gmail.com>2014-06-02 21:18:18 +0200
commite9f27b9ad506a8e37565abf72c0e9f23254595de (patch)
tree89c980b9fe8287d36242ad20a572e36de3868b2f
parente2645bd1de7bb9f41217ea84965c33d2d999e86f (diff)
parente5eb95a2e2785016cfe9a677864d5904544ad474 (diff)
downloadnumpy-e9f27b9ad506a8e37565abf72c0e9f23254595de.tar.gz
Merge pull request #4757 from charris/update-1.9.0-release-notes
DOC: Note nanpercentile in 1.9.0 release notes.
-rw-r--r--doc/release/1.9.0-notes.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/release/1.9.0-notes.rst b/doc/release/1.9.0-notes.rst
index 4ecacaf9e..88bff1212 100644
--- a/doc/release/1.9.0-notes.rst
+++ b/doc/release/1.9.0-notes.rst
@@ -182,10 +182,10 @@ this new boolean argument.
The number of times each unique item comes up in the input can now be
obtained as an optional return value.
-Support for median in nanfunctions
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Taking the median of an ``ndarray`` while ignoring the nans in an array
-was added with the ``np.nanmedian`` function.
+Support for median and percentile in nanfunctions
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+The ``np.nanmedian`` and ``np.nanpercentile`` functions behave like
+the median and percentile functions except that NaNs are ignored.
NumpyVersion class added
~~~~~~~~~~~~~~~~~~~~~~~~