GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lib
/
statistics.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.10] [ GH-99155: Fix `NormalDist` pickle with `0` and `1` protocols (GH-991...
Miss Islington (bot)
2022-11-07
1
-0
/
+6
*
Fix double-space in exception message (GH-29955)
Miss Islington (bot)
2021-12-08
1
-1
/
+1
*
[3.10] bpo-20499: Rounding error in statistics.pvariance (GH-28230) (GH-28248)
Raymond Hettinger
2021-09-08
1
-38
/
+36
*
Update nonstandard variable names (GH-26540) (GH-26546)
Miss Islington (bot)
2021-06-04
1
-5
/
+5
*
Improve speed and accuracy for correlation() (GH-26135) (GH-26151)
Miss Islington (bot)
2021-06-04
1
-12
/
+14
*
bpo-44151: Various grammar, word order, and markup fixes (GH-26344) (GH-26345)
Miss Islington (bot)
2021-05-24
1
-8
/
+8
*
bpo-44151: linear_regression() minor API improvements (GH-26199) (GH-26338)
Miss Islington (bot)
2021-05-24
1
-15
/
+14
*
Apply edits from Allen Downey's review of the linear_regression docs. (GH-261...
Miss Islington (bot)
2021-05-16
1
-6
/
+6
*
Eliminate duplicated calculations and unnecessary work for linear regression ...
Miss Islington (bot)
2021-05-06
1
-2
/
+7
*
Fix inconsistent fsum vs sum and fmean vs mean (GH-25898) (GH-25899)
Miss Islington (bot)
2021-05-04
1
-3
/
+3
*
bpo-38490: statistics: Add covariance, Pearson's correlation, and simple line...
Tymoteusz Wołodźko
2021-04-25
1
-1
/
+135
*
bpo-43147: Remove archaic terminology. (GH-24462)
Raymond Hettinger
2021-02-07
1
-4
/
+3
*
bpo-38308: Add optional weighting to statistics.harmonic_mean() (GH-23914)
Raymond Hettinger
2020-12-23
1
-18
/
+28
*
Some reformatting (suggested by Black) and minor factoring. (GH-20865)
Raymond Hettinger
2020-06-13
1
-31
/
+29
*
bpo-40855: Fix ignored mu and xbar parameters (GH-20835)
Raymond Hettinger
2020-06-13
1
-2
/
+4
*
Minor code cleanups for statistics (GH-19873)
Raymond Hettinger
2020-05-02
1
-76
/
+7
*
bpo-40290: Add zscore() to statistics.NormalDist. (GH-19547)
Raymond Hettinger
2020-04-16
1
-0
/
+11
*
bpo-38385: Fix iterator/iterable terminology in statistics docs (GH-17111)
Raymond Hettinger
2019-11-11
1
-1
/
+1
*
bpo-38521: Fix error in NormalDist.__eq__() (GH-16840)
Raymond Hettinger
2019-10-18
1
-1
/
+1
*
Minor code and comment cleanup (GH-16315)
Raymond Hettinger
2019-09-20
1
-1
/
+3
*
bpo-36546: No longer a need to make "data" positional only (GH-16252)
Raymond Hettinger
2019-09-17
1
-1
/
+1
*
bpo-36018: Address more reviewer feedback (GH-15733)
Raymond Hettinger
2019-09-08
1
-5
/
+27
*
bpo-36324: Apply review comments from Allen Downey (GH-15693)
Raymond Hettinger
2019-09-05
1
-21
/
+17
*
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)
Dong-hee Na
2019-08-23
1
-73
/
+82
*
bpo-36324: Update comments to include the target hash sums (GH-15110)
Raymond Hettinger
2019-08-04
1
-0
/
+3
*
Minor whitespace, indentation, and quoting changes to improve internal consis...
Raymond Hettinger
2019-07-21
1
-53
/
+74
*
bpo-36324: Make internal attributes for statistics.NormalDist() private. (GH-...
Raymond Hettinger
2019-07-21
1
-34
/
+38
*
bpo-36546: Clean-up comments (GH-14857)
Raymond Hettinger
2019-07-19
1
-9
/
+3
*
bpo-36546: Mark first argument as position only (GH-14363)
Raymond Hettinger
2019-06-25
1
-1
/
+1
*
bpo-37158: Simplify and speed-up statistics.fmean() (GH-13832)
Raymond Hettinger
2019-06-05
1
-4
/
+4
*
bpo-36546: Add design notes to aid future discussions (GH-13769)
Raymond Hettinger
2019-06-02
1
-0
/
+39
*
bpo-36018: Make "seed" into a keyword only argument (GH-12921)
Raymond Hettinger
2019-04-23
1
-1
/
+1
*
bpo-35904: Add missing fmean() entry to the summary table (GH-12919)
Raymond Hettinger
2019-04-23
1
-0
/
+1
*
bpo-36546: Add statistics.quantiles() (#12710)
Raymond Hettinger
2019-04-23
1
-4
/
+53
*
bpo-27181: Add statistics.geometric_mean() (GH-12638)
Raymond Hettinger
2019-04-07
1
-1
/
+21
*
bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)
Raymond Hettinger
2019-03-25
1
-1
/
+2
*
bpo-36324: Improved code formatting for the NormalDist.inv_cdf rational appro...
Raymond Hettinger
2019-03-19
1
-46
/
+48
*
NormalDist.inv_cdf(): In-line constants because the variable names were not i...
Raymond Hettinger
2019-03-19
1
-59
/
+46
*
Add docstrings to the arithmetic methods in NormalDist() (GH-12426)
Raymond Hettinger
2019-03-18
1
-14
/
+44
*
bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)
Raymond Hettinger
2019-03-18
1
-0
/
+95
*
Simplify overlap() formula for case where variances are equal (GH-12323)
Raymond Hettinger
2019-03-14
1
-1
/
+1
*
bpo-35892: Fix mode() and add multimode() (#12089)
Raymond Hettinger
2019-03-12
1
-32
/
+40
*
bpo-36169 : Add overlap() method to statistics.NormalDist (GH-12149)
Raymond Hettinger
2019-03-06
1
-1
/
+36
*
bpo-36018: Add special value tests and make minor tweaks to the docs (GH-12096)
Raymond Hettinger
2019-02-28
1
-1
/
+1
*
bpo-36018: Add properties for mean and stdev (GH-12022)
Raymond Hettinger
2019-02-24
1
-0
/
+10
*
bpo-36018: Make __pos__ return a distinct instance of NormDist (GH-12009)
Raymond Hettinger
2019-02-23
1
-1
/
+1
*
bpo-36018: Add the NormalDist class to the statistics module (GH-11973)
Raymond Hettinger
2019-02-23
1
-1
/
+155
*
bpo-35904: Add statistics.fmean() (GH-11892)
Raymond Hettinger
2019-02-21
1
-1
/
+28
*
bpo-29919: Remove unused imports found by pyflakes (#137)
Victor Stinner
2017-03-27
1
-2
/
+1
*
Issue #27181 remove geometric_mean and defer for 3.7.
Steven D'Aprano
2016-10-05
1
-268
/
+1
[next]