summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChun-Wei Yuan <cwyuan@ihmeadmins-MacBook-Pro-80.local>2018-01-16 15:11:42 -0800
committerChun-Wei Yuan <cwyuan@ihmeadminsMBP80.domain>2018-04-16 20:08:11 -0700
commit5d5c379ed5af0df19eec68fdde1f87ad994ce6b1 (patch)
tree00268716d827b7394efd825f7c24a9dcca3ba042 /doc
parent3b79c4405690227087022a943fd78217b700a3f5 (diff)
downloadnumpy-5d5c379ed5af0df19eec68fdde1f87ad994ce6b1.tar.gz
ENH: Adding np.quantile() and np.nanquantile(). #10199
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.15.0-notes.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/release/1.15.0-notes.rst b/doc/release/1.15.0-notes.rst
index b76b68a19..60b73b61f 100644
--- a/doc/release/1.15.0-notes.rst
+++ b/doc/release/1.15.0-notes.rst
@@ -16,6 +16,9 @@ New functions
common multiple.
* `np.ma.stack`, the `np.stack` array-joining function generalized to masked
arrays.
+* ``quantile`` function, an interface to ``percentile`` without factors of 100
+* ``nanquantile`` function, an interface to ``nanpercentile`` without factors
+ of 100
* `np.printoptions`, the context manager which sets print options temporarily
for the scope of the ``with`` block::
@@ -115,6 +118,13 @@ Creating a full iOS-compatible NumPy package requires building for the 5
architectures supported by iOS (i386, x86_64, armv7, armv7s and arm64), and
combining these 5 compiled builds products into a single "fat" binary.
+``np.quantile`` and ``np.nanquantile``
+--------------------------------------
+Like ``np.percentile`` and ``np.nanpercentile``, but takes quantiles in [0, 1]
+rather than percentiles in [0, 100]. ``np.percentile`` is now a thin wrapper
+around ``np.quantile`` with the extra step of dividing by 100.
+
+
Build system
------------
Added experimental support for the 64-bit RISC-V architecture.