summaryrefslogtreecommitdiff
path: root/numpy/lib/nanfunctions.py
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2019-06-15 10:25:26 +0200
committerGitHub <noreply@github.com>2019-06-15 10:25:26 +0200
commit8ae8490808071c71d45082bee6fbb568e3a60180 (patch)
tree00b38db981b91fcdac62b4e6ed55508a003a486a /numpy/lib/nanfunctions.py
parente3eb3986dd87e700a694d6b4151c96ef92dfabe0 (diff)
parent855a712f5bce3b3ca9f7fef41d93105fa2c22c86 (diff)
downloadnumpy-8ae8490808071c71d45082bee6fbb568e3a60180.tar.gz
Merge pull request #13787 from HerculesJack/docversionadded
DOC: Fixed the problem of "versionadded"
Diffstat (limited to 'numpy/lib/nanfunctions.py')
-rw-r--r--numpy/lib/nanfunctions.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/nanfunctions.py b/numpy/lib/nanfunctions.py
index f497aca63..9a03d0b39 100644
--- a/numpy/lib/nanfunctions.py
+++ b/numpy/lib/nanfunctions.py
@@ -1257,6 +1257,7 @@ def nanquantile(a, q, axis=None, out=None, overwrite_input=False,
Compute the qth quantile of the data along the specified axis,
while ignoring nan values.
Returns the qth quantile(s) of the array elements.
+
.. versionadded:: 1.15.0
Parameters