Skip to content

Commit

Permalink
Added Mann-Whitney U-test example notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanistheone committed Feb 2, 2024
1 parent 88abd93 commit af93518
Show file tree
Hide file tree
Showing 4 changed files with 828 additions and 17 deletions.
33 changes: 33 additions & 0 deletions datasets/outliers2.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
group,score
A,982
A,43
A,493
A,790
A,99
A,1034
A,101
A,53
A,255
A,127
A,180
A,26
A,77
A,2500
B,53
B,255
B,127
B,180
B,26
B,77
B,403
B,925
B,2497
B,336
B,735
B,1231
B,2500
B,2500
B,2500
B,2500
B,2500
B,2500
568 changes: 568 additions & 0 deletions examples/Mann-Whitney_U-test.ipynb

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ covered in the [Inventory of statistical test recipes](https://docs.google.com/d

- T-tests
- One-sample $t$-test: [`one_sample_t-test.ipynb`](./one_sample_t-test.ipynb)
- Welch's two-sample $t$-test:
- Welch's two-sample $t$-test: [`two_sample_t-test.ipynb`](./two_sample_t-test.ipynb)
- Two-sample $t$-test with pooled variance (not important)
- Paired $t$-test

Expand All @@ -35,7 +35,7 @@ covered in the [Inventory of statistical test recipes](https://docs.google.com/d
- Nonparametric tests
- Sign test for the population median
- One-sample Wilcoxon signed-rank test
- Mann-Whitney U-test
- Mann-Whitney U-test: [`Mann-Whitney_U-test.ipynb`](./Mann-Whitney_U-test.ipynb)
- Kruskal–Wallis analysis of variance by ranks

- Resampling methods
Expand All @@ -44,7 +44,7 @@ covered in the [Inventory of statistical test recipes](https://docs.google.com/d
- Permutation ANOVA

- Miscellaneous tests
- Equivalence tests
- Equivalence tests: [`two_sample_equivalence_test.ipynb`](./two_sample_equivalence_test.ipynb)
- Kolmogorov–Smirnov test
- Shapiro–Wilk normality test

Expand Down
238 changes: 224 additions & 14 deletions examples/two_sample_t-test.ipynb

Large diffs are not rendered by default.

0 comments on commit af93518

Please sign in to comment.