Week 7: Understanding T-Tests in Statistics

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

One-Sample T-Tests

Used to compare the mean of a single sample to a hypothesized population mean.

2
New cards

Standard Scores (Z-scores)

(raw score - population mean) / standard deviation. All Z-scores have mean 0 and SD 143.

3
New cards

Diagnostic Test Statistic (T)

Measures the difference between a sample mean and a hypothesized population mean; should be close to zero if the null is true.

4
New cards

Sampling Distribution

If the null is true, T follows a t-distribution.

5
New cards

Effect Size (Cohen's d)

Interpretation: 0.2 (small), 0.5 (medium), 0.8 (large).

6
New cards

Independent Samples T-Tests

Compares the means of two independent groups.

7
New cards

Assumptions for Independent Samples T-Test

Population distributions are normal, observations are independently sampled, groups have the same standard deviation.

8
New cards

Student's T-test

Assumes equal variances; estimates a single 'pooled' standard deviation.

9
New cards

Welch's T-test

Does not assume equal variances; uses both groups' standard deviations separately; generally better and is the default in R.

10
New cards

Paired Samples T-Tests

Compares two means within a repeated measures design (e.g., before-after measurements on the same individuals).

11
New cards

How Paired Samples T-Test Works

Essentially runs a one-sample t-test on the difference scores (Null hypothesis: mean difference is 0).

12
New cards

T-Test Assumptions and Solutions

Data must be independent, except for paired designs.

13
New cards

Homogeneity of Variance

The two groups are drawn from populations with the same variance.

14
New cards

QQ Plots

Scatterplot of observed quantiles against theoretical normal quantiles; a straight line suggests normality.

15
New cards

Shapiro-Wilk Test

Quantifies departures from normality. A p-value < 0.05 suggests non-normality.

16
New cards

Non-Parametric Tests

Avoid assumptions about distribution shape; less powerful but sometimes necessary.

17
New cards

Independent Samples Wilcoxon Test

Non-parametric alternative to independent t-test.

18
New cards

Paired Samples Wilcoxon Test

Non-parametric alternative to paired t-test.

19
New cards

Effect Size for Wilcoxon

Cohen's d assumes normality, so use wilcox_effsize() from rstatix package.