diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-05-29 17:08:14 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-05-30 08:48:26 -0600 |
commit | e5eb95a2e2785016cfe9a677864d5904544ad474 (patch) | |
tree | b979d0ae2c239b97b8c0ff9fcaa826fa372278a4 | |
parent | d1a2f7d92ff00d4e01e3a99124c76b99f561bfc9 (diff) | |
download | numpy-e5eb95a2e2785016cfe9a677864d5904544ad474.tar.gz |
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 ~~~~~~~~~~~~~~~~~~~~~~~~ |