aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_statistics.py
Commit message (Expand)AuthorAge
* Fix typos in comments (#123201)Wulian2024-08-21
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-19
* Stronger tests for the statistics kernel formulas (gh-120506)Raymond Hettinger2024-06-14
* Refactor (mostly rearrange) the statistics module (gh-119930)Raymond Hettinger2024-06-01
* Minor speed/accuracy improvement for kde() (gh-119910)Raymond Hettinger2024-06-01
* [tests]: Mark ``test_statistics.test_kde_random`` with a ``requires_resource(...Kirill Podoprigora2024-05-09
* Fix negative bandwidth test and add online code path test. (gh-118600)Raymond Hettinger2024-05-05
* Minor edit: Simplify and tighten the distribution test (gh-118585)Raymond Hettinger2024-05-05
* gh-115532 Add kde_random() to the statistic module (#118210)Raymond Hettinger2024-05-03
* Add cumulative option for the new statistics.kde() function. (#117033)Raymond Hettinger2024-03-24
* gh-115532: Add kernel density estimation to the statistics module (gh-115863)Raymond Hettinger2024-02-25
* gh-112540: Support zero inputs in geometric_mean() (gh-112880)Raymond Hettinger2023-12-08
* gh-110150: Fix base case handling in quantiles() (gh-110151)Raymond Hettinger2023-09-30
* Use unittest test runner for doctests in test_statistics (GH-108921)Serhiy Storchaka2023-09-07
* gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)Serhiy Storchaka2023-09-02
* Extend _sqrtprod() to cover the full range of inputs. Add tests. (GH-107855)Raymond Hettinger2023-08-11
* GH-102670: Use sumprod() to simplify, speed up, and improve accuracy of stati...Raymond Hettinger2023-03-13
* GH-99155: Fix `NormalDist` pickle with `0` and `1` protocols (GH99156)Nikita Sobolev2022-11-06
* GH-95861: Add support for Spearman's rank correlation coefficient (GH-95863)Raymond Hettinger2022-08-18
* Statistics inv_cdf sync with corresponding random module normal distributions...Raymond Hettinger2022-07-26
* Fix inconsistent return type for statistics median_grouped() gh-92531 (#92533)Raymond Hettinger2022-05-09
* Clean-up and simplify median_grouped(). Vastly improve its docstring. (#92324)Raymond Hettinger2022-05-05
* bpo-45876: Correctly rounded stdev() and pstdev() for the Decimal case (GH-2...Raymond Hettinger2021-11-30
* bpo-45876: Improve accuracy for stdev() and pstdev() in statistics (GH-29736)Raymond Hettinger2021-11-26
* bpo-45766: Add direct proportion option to linear_regression(). (#29490)Raymond Hettinger2021-11-21
* bpo-45852: Fix the Counter/iter test for statistics.mode() (GH-29667)Raymond Hettinger2021-11-20
* bpo-20499: Rounding error in statistics.pvariance (GH-28230)Raymond Hettinger2021-09-08
* bpo-39218: Improve accuracy of variance calculation (GH-27960)Raymond Hettinger2021-08-30
* bpo-44960: add regression test for geometric_mean with mixed int/floa… (#27...Irit Katriel2021-08-20
* bpo-44151: linear_regression() minor API improvements (GH-26199)Zack Kneupper2021-05-24
* bpo-44150: Support optional weights parameter for fmean() (GH-26175)Raymond Hettinger2021-05-20
* bpo-38490: statistics: Add covariance, Pearson's correlation, and simple line...Tymoteusz Wołodźko2021-04-25
* bpo-38308: Add optional weighting to statistics.harmonic_mean() (GH-23914)Raymond Hettinger2020-12-23
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-06
* bpo-40855: Fix ignored mu and xbar parameters (GH-20835)Raymond Hettinger2020-06-13
* bpo-40331: Increase test coverage for the statistics module (GH-19608)Tzanetos Balitsaris2020-05-13
* bpo-40290: Add zscore() to statistics.NormalDist. (GH-19547)Raymond Hettinger2020-04-16
* bpo-39002: Fix simple typo: tranlation -> translation (GH-17517)Tim Gates2019-12-09
* bpo-38521: Fix error in NormalDist.__eq__() (GH-16840)Raymond Hettinger2019-10-18
* bpo-36018: Address more reviewer feedback (GH-15733)Raymond Hettinger2019-09-08
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-30
* bpo-37798: Test both Python and C versions in test_statistics.py (GH-15453)Dong-hee Na2019-08-24
* bpo-37707: Exclude expensive unit tests from PGO task (GH-15009)Neil Schemenauer2019-07-30
* bpo-36324: Make internal attributes for statistics.NormalDist() private. (GH-...Raymond Hettinger2019-07-21
* bpo-36546: Add more tests and expand docs (#13406)Raymond Hettinger2019-05-18
* Fix typo: quaatile to quantile (GH=13001)Xtreak2019-05-02
* bpo-36018: Test idempotence. Test two methods against one-another. (GH-13021)Raymond Hettinger2019-04-29
* bpo-36546: More tests: type preservation and equal inputs (#13000)Raymond Hettinger2019-04-28
* bpo-36546: Add statistics.quantiles() (#12710)Raymond Hettinger2019-04-23
* bpo-27181: Add statistics.geometric_mean() (GH-12638)Raymond Hettinger2019-04-07