Stats Tests (code + APA style) Flashcards

1
Q

Independent / unrelated t-test

A

between subjects
interval / ratio data
normal distribution
data must have homogeneity of variance
PARAMETRIC

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

Code for independent t-test

A

t.test(VN~VN)

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

APA style: independent t-test

A

t(df) = t-test value, p-value, cohen’s d, confidence interval

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

Paired / Related t-test

A

within subjects design
interval / ratio data
normal distribution
PARAMETRIC

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

Code for paired samples t-test

A

t.test(VN, VN, paired = TRUE)

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

APA style: paired samples t-test

A

(mean diff= x) t(df) = t-test value, p-value, cohen’s d, confidence interval

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

Mann Whitney U

A

between subjects
ordinal data
or interval / ratio that’s skewed
NON-PARAMETRIC

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

Code for Mann Whitney U

A

wilcox.test(VN~VN)
if it cannot compute exact p-value with ties use code:
wilcox.test(VN~VN, exact=F)

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

APA style: Mann Whitney U

A

Mdn = x.xx, IQR = x.x, W = x.xx, N = x.xx, p= x.xx, A = x.xx

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

Wilcoxon Signed Rank test

A

within subjects design
ordinal data
or interval / ratio that’s skewed
NON-PARAMETRIC

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

Code for Wilcoxon Signed Rank

A

wilcox.test(VN, VN, paired =T)

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

APA style: Wilcoxon Signed Rank

A

(Mdn= x.xx, IQR= x.xx), V= x.xx, N=x.xx, p= x.xx, A= x.xx

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

Friedman’s test

A

Within subjects design
3+ conditions
ordinal
or interval / ratio that’s skewed
NON-PARAMETRIC

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

Code for Friedman’s test

A

friedman.test(VN~VN |ID)

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

APA style: Friedman test

A

X2(df) = Friedman chi-square value, p= x.xx, W= x.xx

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

Kruskal-Wallis test

A

between subjects design
3+ conditions
ordinal
or interval / ratio that’s skewed
NON-PARAMETRIC

17
Q

Code for Kruskal-Wallis test

A

kruskal.test(DV~IV)

18
Q

APA style: Kruskal-Wallis test

A

X2(df) = kruskal-wallis value, p= x.xx, n2=1 N² x.xx (mdn= x, IQR= x)

19
Q

Code for Post hoc testing

A

pairwise.wilcox.test(VN, VN, paired=T, exact=F, p.adjust.method = “none” or “bonferroni”)