Section 9: Non-parametric Statistical Tests Flashcards

(45 cards)

1
Q

What are non-parametric statistical tests?

A

Statistical methods that don’t assume a specific data distribution (e.g., normality); AKA distribution-free methods.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When are non-parametric tests used?

A

When data is:

  • not normally distributed
  • ordinal/ranked
  • sample sizes are small.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the main advantages of non-parametric tests?

A
  • Make fewer assumptions
  • More robust
  • Applicability much wider than parametric methods
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the main disadvantages of non-parametric tests?

A
  • Have less statistical power than parametric tests
  • may require larger samples sizes to draw conclusions with same degree of confidence
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What non-parametric test replaces the Independent Samples t-test?

A

Mann–Whitney U test (a.k.a. Wilcoxon rank-sum test).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What non-parametric test replaces the Paired Samples t-test?

A

Wilcoxon matched-pairs signed-rank test.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What non-parametric test replaces the One-way ANOVA?

A

Kruskal–Wallis rank test.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What non-parametric test is the equivalent of Pearson’s correlation?

Geen idee of dit klopt

A

Spearman’s rank correlation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does the Mann–Whitney U test compare?

A

Used to compare two independent samples when:

  • outcome is not normally distributed
  • and/or the samples are small
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the hypotheses of the Mann–Whitney U test?

A
  • H₀: H0: 2 populations (exposure groups) are equal with respect to outcome variable
  • H₁: 2 populations (exposure groups) are not equal with respect to outcome variable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the purpose of the Mann–Whitney U test?

A

To test whether distribution of DV differs between 2 independent groups when data are not normally distributed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

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”?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Example: What would the Mann–Whitney U test assess in a study comparing breastfeeding duration between women with and without breast cancer?

A
  • It would test whether breastfeeding duration (the outcome) is distributed differently between women with breast cancer and those without
  • i.e., whether one group tends to have longer or shorter breastfeeding durations.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How does the Mann–Whitney U test work conceptually?

A

It ranks all observations and compares the rank sums between groups.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the Mann Whitney U test depend on?

A

Ranking all observations (from smallest to largest) and then adding the ranks in each exposure group

  • Tied ranks are averaged
  • Under the null hypothesis, the sum of ranks would on average be similar between the two groups
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What Stata command runs the Mann–Whitney U test?

A

ranksum outcome, by(group)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What does the Wilcoxon signed-rank test compare?

A

Two related or paired samples to test whether their medians differ.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the Wilcoxon matched-pairs signed-rank test (also known as the Wilcoxon signed-rank test)?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What does the Wilcoxon signed-rank test evaluate?

A

It tests whether distribution of DV differs between two related (paired) observations from the same sample.

20
Q

What is the key hypothesis behind the Wilcoxon signed-rank test?

A

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.

21
Q

When would you use the Wilcoxon signed-rank test?

A

When comparing before-and-after measures in the same subjects and data are not normal.

22
Q

What are the hypotheses of the Wilcoxon signed-rank test?

A

H₀: Median of the differences = 0.
H₁: Median of the differences ≠ 0.

23
Q

What Stata command runs the Wilcoxon signed-rank test?

A

signrank var1 = var2

24
Q

What is the first step in the Wilcoxon matched-pairs signed-rank test?

A

Calculate the difference between each pair of observations (e.g., After – Before) to measure change for each subject.

25
What happens to differences that are exactly zero in the Wilcoxon signed-rank test?
They are excluded from the analysis because they show no change between the two measurements.
26
How are the differences ranked in the Wilcoxon signed-rank test?
The absolute values of the non-zero differences are ranked from smallest to largest; tied values are given average ranks.
27
What are T⁺ and T⁻ in the Wilcoxon signed-rank test?
* T⁺: Sum of ranks for positive differences (increases) * T⁻: Sum of ranks for negative differences (decreases)
28
What does it mean under the null hypothesis when T⁺ and T⁻ are similar? | Wilcoxon signed rank test
It means there is no systematic difference between the two sets of observations — the changes are balanced, so H₀ (no difference) is not rejected.
29
What are the main steps of the Wilcoxon matched-pairs signed-rank test? | Klopt dit?
1. Calculate the difference between each pair of observations. 2. Exclude zero differences. 3. Rank the absolute values of the remaining differences (average tied ranks). 4. Sum the ranks for positive (T⁺) and negative (T⁻) differences. 5. Compare T⁺ and T⁻ — large differences indicate a significant effect.
30
What does a large difference between T⁺ and T⁻ indicate in the Wilcoxon signed-rank test?
It suggests a systematic change in one direction (either increase or decrease), meaning the difference between paired observations is statistically significant — reject H₀.
31
What is the Kruskal–Wallis rank test used for?
Used to compare two or more independent samples when outcome variable: * isn't normally distributed and/or * when sample sizes are small.
32
What is the Stata command for the Kruskal–Wallis test?
kwallis outcome, by(group)
33
What test checks for normality before deciding between parametric and non-parametric tests?
Shapiro–Wilk test (swilk varname in Stata).
34
What does a p-value < 0.05 indicate in non-parametric tests?
The result is statistically significant; reject the null hypothesis.
35
In Stata, where can you find non-parametric tests in the menu?
Statistics → Nonparametric analysis → Tests of hypotheses.
36
What does the Kruskal–Wallis test evaluate?
tests whether distribution of DV **differs** between two or more exposure groups.
37
How is the Kruskal–Wallis test related to the Mann–Whitney U test?
It’s an extension of the Mann–Whitney U test that allows comparison of more than two independent groups
38
How do we interpret the Kruskal–Wallis rank test?
* If p > 0.05 → no significant difference; all groups have similar distributions. * If p < 0.05 → at least one group differs significantly, but post-hoc Mann–Whitney tests are needed to identify which groups differ.
39
What is the hypotheses for Kruskal-Wallis rank test?
* H0: The populations (exposure groups) are equal with respect to the outcome variable * H1: The populations (exposure groups) are not equal with respect to the outcome variable
40
What are Post-hoc Mann–Whitney Pairwise Comparisons?
Follow-up tests performed after a significant Kruskal–Wallis test to identify which specific groups differ from each other.
41
Why do we use Post-hoc Mann–Whitney tests after a Kruskal–Wallis test?
Because the Kruskal–Wallis test only shows that at least one group differs, not which groups are different — the post-hoc tests reveal this.
42
How are Post-hoc Mann–Whitney Pairwise Comparisons performed?
By comparing each pair of groups separately using the Mann–Whitney U test, then checking which pairs show significant p-values.
43
How do you run Post-hoc Mann–Whitney tests in Stata?
Use the ranksum command with an if condition to select two groups, e.g.: ranksum outcome if group != 2, by(group)
44
How do you interpret Post-hoc Mann–Whitney test results?
* p < 0.05: The two groups differ significantly. * p > 0.05: No significant difference between those groups.
45