summaryrefslogtreecommitdiffstats
path: root/Doc/library/statistics.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-36018: Minor fixes to the NormalDist() examples and recipes. (GH-18226) ↵Miss Islington (bot)2020-01-281-5/+5
| | | | | | | | | | | | | (GH-18227) * Change the source for the SAT data to a primary source. * Fix typo in the standard deviation * Clarify that the binomial probabalities are just for the Python room. (cherry picked from commit 01bf2196d842fc20667c5336e0a7a77eb4fdc25c) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com> Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-36018: Add another example for NormalDist() (GH-18191) (GH-18192)Miss Islington (bot)2020-01-261-0/+36
|
* bpo-21063: Improve module synopsis for distutils (GH-17363)Miss Islington (bot)2019-11-251-1/+1
| | | | | (cherry picked from commit f8a6316778faff3991144c3aec4fa92d7b30a72b) Co-authored-by: Sanchit Khurana <54467174+GeniusLearner@users.noreply.github.com>
* bpo-38385: Fix iterator/iterable terminology in statistics docs (GH-17111) ↵Miss Islington (bot)2019-11-121-9/+9
| | | | | | | (GH-17113) (cherry picked from commit 733b9a308e3c49855888e2e12397ae56d831e780) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-38382: Document the early-out behavior for a zero (GH-17037) (GH-17078)Miss Islington (bot)2019-11-071-1/+6
| | | | | (cherry picked from commit 7f460494d2309ace004a400bae8fc59134dc325c) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-38464: Document parameter for NormalDist.quantiles() (GH-16757) (GH-16758)Miss Islington (bot)2019-10-141-1/+1
| | | | | (cherry picked from commit 8a6cbf8adb68aa2c43a48769af92e50d5ca1539d) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* [3.8] bpo-36018: Address more reviewer feedback (GH-15733) (GH-15734)Raymond Hettinger2019-09-091-14/+27
|
* More refinements to the statistics docs (GH-15713) (GH-15715)Miss Islington (bot)2019-09-061-27/+33
| | | | | (cherry picked from commit d8c93aa5d29d3cab537357018d5806a57452a8fe) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-36324: Apply review comment from Jake Vanderplas (GH-15695) (GH-15696)Miss Islington (bot)2019-09-051-2/+2
| | | | | (cherry picked from commit 9b51570ffd0494c07dafe10c7d2afe865754694c) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-36324: Apply review comments from Allen Downey (GH-15693) (GH-15694)Miss Islington (bot)2019-09-051-64/+65
| | | | | (cherry picked from commit e4810b2a6c1d0db1a27ad046831b8fa3b57967a4) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-37905: Improve docs for NormalDist (GH-15486) (GH-15487)Miss Islington (bot)2019-08-251-20/+7
| | | | | (cherry picked from commit 8371799e300475c8f9f967e900816218d3500e5d) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-35892: Add usage note to mode() (GH-15122) (GH-15176)Miss Islington (bot)2019-08-081-1/+3
| | | | | (cherry picked from commit e43e7ed36480190083740fd75e2b9cdca72f1a68) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* Add examples to elucidate the formulas (GH-14898) (GH-14899)Miss Islington (bot)2019-07-211-6/+10
| | | | | (cherry picked from commit b530a4460b7a6ea96f1fa81a7c5bb529ead574ef) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* bpo-36546: Add more tests and expand docs (#13406)Raymond Hettinger2019-05-181-11/+22
|
* bpo-36018: Make "seed" into a keyword only argument (GH-12921)Raymond Hettinger2019-04-231-1/+1
|
* bpo-36546: Add statistics.quantiles() (#12710)Raymond Hettinger2019-04-231-3/+51
|
* bpo-27181: Add statistics.geometric_mean() (GH-12638)Raymond Hettinger2019-04-071-0/+19
|
* bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)Raymond Hettinger2019-03-191-0/+22
|
* Correct the heading levels (GH-12338)Raymond Hettinger2019-03-151-2/+2
|
* bpo-35892: Fix mode() and add multimode() (#12089)Raymond Hettinger2019-03-121-8/+30
|
* Various refinements to the NormalDist examples and recipes (GH-12272)Raymond Hettinger2019-03-111-23/+26
|
* Make a documentation link target more specific (GH-12249)Raymond Hettinger2019-03-091-3/+3
|
* NormalDist.overlap() only needs one example (GH-12218)Raymond Hettinger2019-03-071-17/+4
|
* Refine statistics.NormalDist documentation and improve test coverage (GH-12208)Raymond Hettinger2019-03-071-28/+24
|
* bpo-36169 : Add overlap() method to statistics.NormalDist (GH-12149)Raymond Hettinger2019-03-071-0/+32
|
* bpo-36018: Add documentation link to "random variable" (GH-12114)Raymond Hettinger2019-03-011-5/+7
| | | https://bugs.python.org/issue36018
* bpo-36018: Add special value tests and make minor tweaks to the docs (GH-12096)Raymond Hettinger2019-02-281-3/+3
| | | https://bugs.python.org/issue36018
* bpo-36018: Add properties for mean and stdev (GH-12022)Raymond Hettinger2019-02-241-6/+10
| | | | | | | | | | | | Responding to suggestions on the tracker and some off-line suggestions. Davin suggested that english named accessors instead of greek letters would result in more intelligible user code. Steven suggested that the parameters still need to be *mu* and *theta* which are used elsewhere (and I noted those parameter names are used in linked-to resources). Michael suggested proving-out the API by seeing whether it generalized to *Lognormal*. I did so and found that Lognormal distribution parameters *mu* and *sigma* do not represent the mean and standard deviation of the lognormal distribution (instead, they are for the underlying regular normal distribution). Putting these ideas together, we have NormalDist parameterized by *mu* and *sigma* but offering English named properties for accessors. That gives lets us match other API that access mu and sigma, it matches the external resources on the topic, gives us clear english names in user code. The API extends nicely to LogNormal where the parameters and the summary statistic accessors are not the same. https://bugs.python.org/issue36018
* bpo-36018: Add the NormalDist class to the statistics module (GH-11973)Raymond Hettinger2019-02-231-0/+195
|
* bpo-35904: Add statistics.fmean() (GH-11892)Raymond Hettinger2019-02-211-0/+18
|
* bpo-33573: docs to suggest median() alternatives for non-numeric data (GH-7587)Tal Einat2018-06-251-0/+4
|
* bpo-25910: Link redirections in docs (#1933)Sanyam Khurana2018-01-201-2/+0
| | | Fixes some redirection links in docs.
* Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-3/+3
|\ | | | | | | in the documentation.
| * Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-3/+3
| | | | | | | | in the documentation.
* | Issue #27825: Improve for statistics data arguments. (Contributed by ↵Raymond Hettinger2016-11-221-5/+5
| | | | | | | | Mariatta Wijaya.)
* | Issue #27181 remove geometric_mean and defer for 3.7.Steven D'Aprano2016-10-041-29/+0
| |
* | Fix markup, add versionadded tagsZachary Ware2016-08-231-3/+7
| |
* | Add documentation for geometric and harmonic means.Steven D'Aprano2016-08-231-0/+58
|/
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+3
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Fixing broken links in doc, part 3: the restGeorg Brandl2014-10-291-1/+1
|
* Revert #22251Berker Peksag2014-09-271-3/+1
|
* Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-271-1/+3
|
* Close #20481: Disallow mixed type input in statisticsNick Coghlan2014-02-081-0/+10
| | | | | | | The most appropriate coercion rules are not yet clear, so simply disallowing mixed type input for 3.4. (Committed on Steven's behalf)
* Note that examples are sorted only for convenience.Georg Brandl2013-11-041-0/+3
|
* Closes #19323: fix typo. Thanks to Michael Merickel.Georg Brandl2013-10-211-1/+1
|
* Reformat statistics.rst and remove unnecessary headings for each function.Georg Brandl2013-10-211-197/+139
|
* remove backticksBenjamin Peterson2013-10-201-1/+1
|
* fix declaration of StatisticsErrorBenjamin Peterson2013-10-201-2/+2
|
* Issue #19304: Fix typos noted by Claudiu Popa.Ned Deily2013-10-191-2/+2
|