[Python-checkins] bpo-38464: Document parameter for NormalDist.quantiles() (GH-16757) (GH-16758)

Raymond Hettinger webhook-mailer at python.org
Sun Oct 13 23:04:33 EDT 2019


https://github.com/python/cpython/commit/36f62860f631acefd7988b76901863339ffa26c9
commit: 36f62860f631acefd7988b76901863339ffa26c9
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Raymond Hettinger <rhettinger at users.noreply.github.com>
date: 2019-10-13T20:04:29-07:00
summary:

bpo-38464: Document parameter for NormalDist.quantiles() (GH-16757) (GH-16758)

(cherry picked from commit 8a6cbf8adb68aa2c43a48769af92e50d5ca1539d)

Co-authored-by: Raymond Hettinger <rhettinger at users.noreply.github.com>

files:
M Doc/library/statistics.rst

diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst
index bdd706d0a93e3..a702b2463c39b 100644
--- a/Doc/library/statistics.rst
+++ b/Doc/library/statistics.rst
@@ -681,7 +681,7 @@ of applications in statistics.
        the two probability density functions
        <https://www.rasch.org/rmt/rmt101r.htm>`_.
 
-    .. method:: NormalDist.quantiles()
+    .. method:: NormalDist.quantiles(n=4)
 
         Divide the normal distribution into *n* continuous intervals with
         equal probability.  Returns a list of (n - 1) cut points separating



More information about the Python-checkins mailing list