What are non-parametric statistical tests?
Statistical methods that don’t assume a specific data distribution (e.g., normality); AKA distribution-free methods.
When are non-parametric tests used?
When data is:
What are the main advantages of non-parametric tests?
What are the main disadvantages of non-parametric tests?
What non-parametric test replaces the Independent Samples t-test?
Mann–Whitney U test (a.k.a. Wilcoxon rank-sum test).
What non-parametric test replaces the Paired Samples t-test?
Wilcoxon matched-pairs signed-rank test.
What non-parametric test replaces the One-way ANOVA?
Kruskal–Wallis rank test.
What non-parametric test is the equivalent of Pearson’s correlation?
Geen idee of dit klopt
Spearman’s rank correlation.
What does the Mann–Whitney U test compare?
Used to compare two independent samples when:
What are the hypotheses of the Mann–Whitney U test?
What is the purpose of the Mann–Whitney U test?
To test whether distribution of DV differs between 2 independent groups when data are not normally distributed.
What does it mean when we say the Mann–Whitney U test checks if “the distribution of the dependent variable differs between two exposure groups”?
It checks whether one group tends to have higher or lower values (ranks) of the outcome variable compared to the other group — i.e., whether the pattern of values differs between them.
Example: What would the Mann–Whitney U test assess in a study comparing breastfeeding duration between women with and without breast cancer?
How does the Mann–Whitney U test work conceptually?
It ranks all observations and compares the rank sums between groups.
What does the Mann Whitney U test depend on?
Ranking all observations (from smallest to largest) and then adding the ranks in each exposure group
What Stata command runs the Mann–Whitney U test?
ranksum outcome, by(group)
What does the Wilcoxon signed-rank test compare?
Two related or paired samples to test whether their medians differ.
What is the Wilcoxon matched-pairs signed-rank test (also known as the Wilcoxon signed-rank test)?
It’s a non-parametric test used to compare two sets of observations from the same group when outcome is not normally distributed or the sample size is small.
What does the Wilcoxon signed-rank test evaluate?
It tests whether distribution of DV differs between two related (paired) observations from the same sample.
What is the key hypothesis behind the Wilcoxon signed-rank test?
It examines whether the median of the differences between paired observations is zero in the population — meaning no real change or effect between the two time points or conditions.
When would you use the Wilcoxon signed-rank test?
When comparing before-and-after measures in the same subjects and data are not normal.
What are the hypotheses of the Wilcoxon signed-rank test?
H₀: Median of the differences = 0.
H₁: Median of the differences ≠ 0.
What Stata command runs the Wilcoxon signed-rank test?
signrank var1 = var2
What is the first step in the Wilcoxon matched-pairs signed-rank test?
Calculate the difference between each pair of observations (e.g., After – Before) to measure change for each subject.