summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lorentzen <lorentzen.ch@gmail.com>2023-04-26 23:24:30 +0200
committerChristian Lorentzen <lorentzen.ch@gmail.com>2023-04-26 23:24:30 +0200
commit1947415e4d4f4cb75989e194e052431068dbd772 (patch)
treee5959a94526ce4a72716c263ccbc8766f088c35d
parent819d92116bd08a3732becd9895d48618588be3ba (diff)
downloadnumpy-1947415e4d4f4cb75989e194e052431068dbd772.tar.gz
DOC use percentage for q in percentile
-rw-r--r--numpy/lib/function_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 3a2d9b792..964d4e067 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -3937,8 +3937,8 @@ def percentile(a,
a : array_like of real numbers
Input array or object that can be converted to an array.
q : array_like of float
- Percentile or sequence of percentiles to compute, which must be between
- 0 and 100 inclusive.
+ Percentage or sequence of percentages for the percentiles to compute.
+ Values must be between 0 and 100 inclusive.
axis : {int, tuple of int, None}, optional
Axis or axes along which the percentiles are computed. The
default is to compute the percentile(s) along a flattened