Section 6: Basic analysis for Determining Associations with numeric outcomes I: T-test and ANOVA Flashcards

(26 cards)

1
Q

What is the IV & DV for “A study finds that reading levels are affected by whether a person is born in the U.S. or in a foreign country”?

A
  • Independent: Country of birth
  • Dependent: Reading level
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the IV & DV if “A large cohort study has shown that men who smoke have more than 30 times the risk of developing lung cancer, compared to non-smoking males”?

A
  • Independent: Smoking,
  • Dependent: Lung Cancer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the IV & DV if “A researcher studies how different drug doses affect the progression of a disease and compares the intensity and frequency of symptoms when different doses are given”?

A
  • Independent: Drug dose, Dependent: Intensity of symptoms
  • Independent: Drug dose, Dependent: Frequency of symptoms
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the types of analysis of a categorical exposure and a numeric outcome?

A
  1. Independent samples T-test (Student’s T-test)
  2. Paired samples T-test (matched pairs T-test)
  3. One-way ANOVA analysis
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the null hypothesis for an independent samples t-test?

A
  • population means from two unrelated groups are equal
  • alternatively mean diff=0
  • H0 : μ1 = μ2 or H0: diff = 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the assumptions for independent samples t-tests?

A
  1. DV should follow normal distribution for each of 2 pops being compared
  2. DV shouldn’t have outliers
  3. 2 pops being compared should have same variance
  4. data used to carry out test should be sampled independently from 2 pops being compared
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How can normality be tested for independent samples t-test?

Independent samples T-test Assumptions

A

Using Shapiro-wilk or Shapiro-Francia tests using the if == options

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

How do we test 2 pops being compared should have same variance for indepenedent samples t-tests?

Independent samples T-test Assumptions

A

Testable using Two Group Variance Comparison Test (sdtest) in STATA

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

Why does the data used to carry out test be sampled independently from 2 pops being compared for independent samples t-tests?

Independent samples T-test Assumptions

A

If the data were dependently sampled, the t-tests may give misleading results

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

What are the assumptions for one-way anova?

A
  • Normal distribution in each group.
  • No outliers.
  • Equal variances (tested with Bartlett’s test).
  • Independent samples.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does a independent samples t-test compare?

A

Comparison of outcome mean between two independent/different groups

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

What are the five types of bivariate analyses?

A
  1. Categorical independent – Numeric dependent
  2. Numeric independent – Numeric dependent
  3. Categorical independent – Categorical dependent
  4. Categorical independent – Dichotomous dependent
  5. Numeric independent – Dichotomous dependent
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which tests are used when the exposure is categorical and the outcome is numeric?

A
  • Independent samples t-test
  • Paired samples t-test
  • One-way ANOVA.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does an independent samples t-test compare?

A

The means of two independent groups.

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

What p-value indicates statistical significance at α=0.05?

A

A p-value less than 0.05 means we reject the null hypothesis.

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

What does a paired samples t-test compare?

A

Two sets of measurements from same group (e.g., before and after an intervention).

17
Q

What are the assumptions of the paired t-test?

A
  • Normal distribution for both sets of observations.
  • No extreme outliers.
  • Equal variances between sets of observations.
  • 2 sets of observations need to be dependent (from the same, or matched individuals).
18
Q

What does the one-way ANOVA test do?

A
  • Comparison of the outcome mean between the independent/different category groups
  • > 2 groups
19
Q

What happens if Bartlett’s test is significant (p<0.05)?

A

The variances are unequal, and ANOVA results may be unreliable.

20
Q

What is Bartlett’s test used for in ANOVA?

A

To test the assumption of equal variances across groups.

21
Q

What does a 95% confidence interval (CI) that does not include 0 indicate?

A

The difference between means is statistically significant

22
Q

What Stata command tests for equal variances?

A

sdtest variable, by(group).

23
Q

What Stata command tests for normality?

A

swilk variable (Shapiro–Wilk test).

24
Q

What Stata command performs an independent samples t-test?

A

ttest outcome, by(exposure).

25
What Stata command performs a paired t-test?
ttest variable1 == variable2
26
What Stata command performs a one-way ANOVA? | not sure if this is correct
oneway outcome group, bonferroni sidak tabulate.