Skip to content

Instantly share code, notes, and snippets.

@casallas
Last active January 2, 2016 06:09
Show Gist options
  • Save casallas/8261406 to your computer and use it in GitHub Desktop.
Save casallas/8261406 to your computer and use it in GitHub Desktop.
Checking stat-test results
# t-test
## t(df) = t.comp, p < alpha
## Compare computed t to tabulated t
qt(1-alpha, df) < t.comp
# F-test
## F(df1, df2) = f.comp, p < alpha
## Compare computed f to tabulated f
qf(1-alpha, df1, df2) < f.comp
# Chi-square test
## χ2(df) = chisq.comp, p < alpha
## Compare computed χ2 to tabulated χ2
qchisq(1-alpha, df) < chisq.comp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment