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”?
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”?
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”?
What are the types of analysis of a categorical exposure and a numeric outcome?
What is the null hypothesis for an independent samples t-test?
What are the assumptions for independent samples t-tests?
How can normality be tested for independent samples t-test?
Independent samples T-test Assumptions
Using Shapiro-wilk or Shapiro-Francia tests using the if == options
How do we test 2 pops being compared should have same variance for indepenedent samples t-tests?
Independent samples T-test Assumptions
Testable using Two Group Variance Comparison Test (sdtest) in STATA
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
If the data were dependently sampled, the t-tests may give misleading results
What are the assumptions for one-way anova?
What does a independent samples t-test compare?
Comparison of outcome mean between two independent/different groups
What are the five types of bivariate analyses?
Which tests are used when the exposure is categorical and the outcome is numeric?
What does an independent samples t-test compare?
The means of two independent groups.
What p-value indicates statistical significance at α=0.05?
A p-value less than 0.05 means we reject the null hypothesis.
What does a paired samples t-test compare?
Two sets of measurements from same group (e.g., before and after an intervention).
What are the assumptions of the paired t-test?
What does the one-way ANOVA test do?
What happens if Bartlett’s test is significant (p<0.05)?
The variances are unequal, and ANOVA results may be unreliable.
What is Bartlett’s test used for in ANOVA?
To test the assumption of equal variances across groups.
What does a 95% confidence interval (CI) that does not include 0 indicate?
The difference between means is statistically significant
What Stata command tests for equal variances?
sdtest variable, by(group).
What Stata command tests for normality?
swilk variable (Shapiro–Wilk test).
What Stata command performs an independent samples t-test?
ttest outcome, by(exposure).