Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more Kolmogorov–Smirnov test #1504

Merged
merged 27 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d4334d0
add ks test for `geometric`, `hypergeometric`, `poisson`
JamboChen Oct 8, 2024
2244c8d
add ks test for `uniform`, `exp`, `gamma`, `chi_squared`, `beta`
JamboChen Oct 8, 2024
d4f9226
add ks test for `cauchy`, `log_normal`, `weibull`
JamboChen Oct 8, 2024
b347cb0
fix log_normal test
JamboChen Oct 9, 2024
78f6d0d
add some extreme parameters
JamboChen Oct 9, 2024
6c932dc
Fix: Comment out failing test cases
JamboChen Oct 9, 2024
dce3073
Fix: MSRV cannot be compiled
JamboChen Oct 9, 2024
48b6156
add: `triangular` test
JamboChen Oct 10, 2024
10c19b0
Refactor: poisson function to use `gamma_lr`
JamboChen Oct 10, 2024
d22304d
add: ks test for `Pareto`
JamboChen Oct 10, 2024
c71b3ff
add: ks test for `Gumbel`
JamboChen Oct 10, 2024
02d05e9
add: ks test for `Frechet`, `t`, `F`
JamboChen Oct 10, 2024
2bf4dad
clippy
JamboChen Oct 10, 2024
0467655
add: ks test for `zeta`, `zipf`
JamboChen Oct 11, 2024
e67f802
fix: zeta cdf's support
JamboChen Oct 11, 2024
a8e3596
add: ks test for `SkewNormal`
JamboChen Oct 11, 2024
88e58bc
clippy
JamboChen Oct 11, 2024
dbfda2b
fmt
JamboChen Oct 11, 2024
867f58f
Merge branch 'rust-random:master' into more_ks_test
JamboChen Oct 16, 2024
b4148cc
Merge branch 'rust-random:master' into more_ks_test
JamboChen Oct 17, 2024
102411d
Delete unreasonable test parameters according to comments
JamboChen Oct 17, 2024
ac7e19a
fix: `f64` poisson distribution on 1.16.1
JamboChen Oct 17, 2024
5b32931
Merge branch 'rust-random:master' into more_ks_test
JamboChen Oct 17, 2024
436ab97
Add: `CHANGELOG.md` entry
JamboChen Oct 17, 2024
771e79b
Tidy up `owen_t` functions
JamboChen Oct 17, 2024
7ca4e29
Collect MIT License functions
JamboChen Oct 17, 2024
b359a58
Add `assert` for `gamma_lr`
JamboChen Oct 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions rand_distr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix panic in Binomial (#1484)
- Move some of the computations in Binomial from `sample` to `new` (#1484)
- Add Kolmogorov Smirnov test for sampling of `Normal` and `Binomial` (#1494)
- Add Kolmogorov Smirnov test for more distributions (#1504)

### Added
- Add plots for `rand_distr` distributions to documentation (#1434)
Expand Down
Loading