diff options
author | Julian Taylor <juliantaylor108@gmail.com> | 2014-06-02 21:18:18 +0200 |
---|---|---|
committer | Julian Taylor <juliantaylor108@gmail.com> | 2014-06-02 21:18:18 +0200 |
commit | e9f27b9ad506a8e37565abf72c0e9f23254595de (patch) | |
tree | 89c980b9fe8287d36242ad20a572e36de3868b2f | |
parent | e2645bd1de7bb9f41217ea84965c33d2d999e86f (diff) | |
parent | e5eb95a2e2785016cfe9a677864d5904544ad474 (diff) | |
download | numpy-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.rst | 8 |
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 ~~~~~~~~~~~~~~~~~~~~~~~~ |