FSharp.Stats
FSharp.Stats copied to clipboard
[Feature Request] Wilcoxon signed ranked test
A Wilcoxon test compares two samples deriving from non-parametric distributions. While a test for multiple samples exists in FSharp.Stats (H-test), a test for two samples is missing.
- [x] Wilcoxon test
- [ ] Mann–Whitney U test
- [x] documentation
- [x] unit tests
I have to clarify myself since I noticed there are two versions that easily get mixed up.
- Mann–Whitney U test that tests two independent samples
- Wilcoxon signed-rank test that tests dependent samples
None of these are implemented in FSharp.Stats at the moment.
I'm working atm. on the implementation of the Mann-Whitney U test.
I'm working on the wilcoxon signed-rank test.
Wilcoxon test is implemented with documentation and unit tests. @omaus, what is the status of the Mann-Whitney U test?