1/30
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Which test checks for equal variance between two groups in Stata?
robvar dv, by(iv)
What is the command for an independent samples t-test in Stata?
ttest dv, by(iv)
What non-parametric test should you run if equal variance is violated in an independent t-test?
Wilcoxon-Mann-Whitney Rank-Sum Test: ranksum iq, by(dropout)
How should you interpret the result of a Mann-Whitney U test?
There is a significant difference in the distribution of the dependent variable between the two groups.
What command creates a new variable showing the difference between GPA and GPA2?
gen gpa_diff = gpa - gpa2
What is the Stata command for a paired t-test?
ttest gpa = gpa2
What non-parametric test is used instead of a paired t-test if normality is violated?
Wilcoxon Signed-Rank Test: signrank gpa = gpa2
How should you interpret the Wilcoxon Signed-Rank Test?
There is a significant difference in the median paired values.
What command runs a one-way ANOVA on sperm count by soy meal group?
oneway spcount smeal
What non-parametric test is used when ANOVA assumptions are violated?
Kruskal-Wallis Test: kwallis spcount, by(smeal)
What is the follow-up post-hoc test after a Kruskal-Wallis test?
dunntest spcount, by(smeal) ma(bonferroni)
What are the key assumptions of a t-test?
Normal distribution of DV in each group
Homogeneity of variance (for independent t-test)
What does the Kruskal-Wallis test compare?
Differences in the distributions of the DV across 3+ groups (ordinal/ranked data)
What Stata command checks the distribution of a numeric variable?
histogram variable, normal
What is the Stata command to test for normality of IQ in students who dropped out?
sktest iq if dropout == 1
Section 1: Two Groups - When do you use the Wilcoxon-Mann-Whitney U test?
When comparing two independent groups where the DV is not normally distributed or data is ordinal. It's the non-parametric equivalent of the independent t-test.
Section 1: Two Groups - What is the non-parametric alternative to an independent t-test?
Wilcoxon-Mann-Whitney U test (or rank sum test).
Section 1: Two Groups - When do you use the Wilcoxon Signed-Rank test?
When comparing two related groups (e.g., pre-post measures) where the differences are not normally distributed.
Section 1: Two Groups - What non-parametric test is used instead of a paired samples t-test?
Wilcoxon Signed-Rank test.
Section 1: Two Groups - What is the Sign Test used for?
To evaluate the direction of change in paired data when you can't assume normality, even weaker assumptions than Wilcoxon.
Section 2: More Than Two Groups - When do you use the Kruskal-Wallis H test?
To compare 3 or more independent groups when the DV is not normally distributed. Non-parametric equivalent of one-way ANOVA.
Section 2: More Than Two Groups - What is the non-parametric alternative to one-way ANOVA?
Kruskal-Wallis test.
Section 2: More Than Two Groups - When do you use the Friedman Test?
To compare 3 or more related (repeated measures) groups when the data doesn't meet ANOVA assumptions.
Section 2: More Than Two Groups - What is the non-parametric equivalent of repeated measures ANOVA?
Friedman test.
Section 2: More Than Two Groups - When is Dunn’s test used?
As a post-hoc test after a significant Kruskal-Wallis result, to identify which groups differ. Can be adjusted using Bonferroni.
Section 3: Categorical Data & Associations - What is the Chi-square test used for?
To test the association between two categorical variables in a contingency table.
Section 3: Categorical Data & Associations - When do you use Fisher’s Exact Test instead of Chi-square?
When sample sizes are small or expected frequencies in cells are < 5.
Section 3: Categorical Data & Associations - What does McNemar’s test examine?
It tests changes in paired binary/categorical responses, often used in before-and-after studies.
Section 4: Correlations - When do you use Spearman’s Rank Correlation? -
When data is ordinal, non-linear, or not normally distributed. Measures strength and direction of monotonic relationships.
Section 4: Correlations - What is the non-parametric version of Pearson’s correlation? -
Spearman’s rho or Kendall’s tau.
Section 4: Correlations - What is Kendall’s Tau used for?
To measure ordinal association, especially with small samples or many tied ranks.