2024-10-14
A good way to think about all statistical models is that the observed data comes from some true model with some random error.
DATA = MODEL + RESIDUAL
MODEL
is a mathematical formula (like \(y = f(x)\)).MODEL
will change depending on the number of, and data types of explanatory variables.residual
error.Moving from:
“What descriptive measures should be used to examine the data”
to
“What statistical analyses should be performed?
This table shows which statistical analyses procedures are appropriate depending on the combination of explanatory (rows) and response (columns) variable.
Exp \ Resp | Binary | Categorical | Quantitative |
---|---|---|---|
Binary | Chi-squared | Chi-squared | T-Test, Linear Regression |
Categorical | Chi-squared | Chi-squared | ANOVA, Linear Regression |
Quantitative | Logistic Regression | Multinomial or Ordinal Regression | Correlation & Linear Regression |
See Table 6.2 in PMA6 for a more detailed table.
Repeated measures is a topic typically taught in MATH 456 (but also covered in Chapter 18 of PMA6)
Most of the common statistical tests (including the ones we cover) are special cases of linear regression
https://lindeloev.github.io/tests-as-linear/
PMA6 does not go over T-test, ANOVA or \(\chi^{2}\) tests. To see more examples (with R code) and more mathematical detail see Chapter 5 in the Applied Stats Course Notes
🔗 https://math615.netlify.app / Stat Inference via Models