Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

πŸ€– Artificial Intelligence
☁️ Cloud and Infrastructure
πŸ’Ύ Data and Databases
πŸ’Ό Professional Skills
🎯 Programming and Development
πŸ”’ Security and Networking
πŸ“š Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 0
0/5 XP
GitHub
Β© 2026 CheatGridβ„’. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Statistical Inference Tests (Hypothesis Tests) Cheat Sheet

Statistical Inference Tests (Hypothesis Tests) Cheat Sheet

Back to Data Science
Updated 2026-04-21
Next Topic: Statsmodels Cheat Sheet

Statistical inference tests are formal procedures for evaluating claims about population parameters using sample data. They form the backbone of evidence-based decision-making in fields from medicine to machine learning, enabling researchers to distinguish genuine effects from random noise. Each test comes with specific assumptions about data distribution, sample size, and measurement scaleβ€”choosing the right test requires understanding both your research question and your data's characteristics. A critical insight: no test "proves" a hypothesis true; instead, tests quantify the probability that observed results could occur by chance alone under a null hypothesis, guiding decisions about what conclusions the data support.


What This Cheat Sheet Covers

This topic spans 21 focused tables and 132 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Core Hypothesis Testing ConceptsTable 2: Parametric Tests for Means (Two Groups)Table 3: Parametric Tests for Means (Three or More Groups)Table 4: Non-Parametric Tests for Continuous/Ordinal DataTable 5: Tests for Categorical DataTable 6: Tests for ProportionsTable 7: Correlation TestsTable 8: Multivariate TestsTable 9: Post-Hoc and Multiple Comparison MethodsTable 10: Effect Size MeasuresTable 11: Normality TestsTable 12: Variance Homogeneity TestsTable 13: Sphericity and Repeated Measures AssumptionsTable 14: Regression and Independence Assumption TestsTable 15: Asymptotic Likelihood-Based TestsTable 16: Resampling and Distribution-Free MethodsTable 17: Equivalence and Bayesian TestingTable 18: Test Selection ScenariosTable 19: Sample Size and Power ConsiderationsTable 20: Decision Rules and ApproachesTable 21: Common Pitfalls and Best Practices

Table 1: Core Hypothesis Testing Concepts

ConceptExampleDescription
Null hypothesis (Hβ‚€)
Hβ‚€: ΞΌ = 50
β€’ Statement of no effect or no difference
β€’ the default assumption tested against
Alternative hypothesis (H₁)
H₁: ΞΌ β‰  50
β€’ Statement that contradicts Hβ‚€
β€’ what researcher seeks evidence for
p-value
p = 0.032
β€’ Probability of obtaining observed data (or more extreme) if Hβ‚€ is true
β€’ lower values indicate stronger evidence against Hβ‚€
Significance level (Ξ±)
Ξ± = 0.05
β€’ Threshold for rejecting Hβ‚€
β€’ typical values are 0.05, 0.01, or 0.001
Test statistic
t = 2.45, z = 1.96
β€’ Numerical summary of sample data under Hβ‚€
β€’ compared to a reference distribution to obtain p-value
Type I error
Reject Hβ‚€ when true
β€’ False positive
β€’ probability equals Ξ±
Type II error
Fail to reject Hβ‚€ when false
β€’ False negative
β€’ probability denoted Ξ²

More in Data Science

  • Statistical Distributions Cheat Sheet
  • Statsmodels Cheat Sheet
  • AB Testing and Online Experimentation Cheat Sheet
  • Design of Experiments (DOE) Cheat Sheet
  • Network Analysis with NetworkX Cheat Sheet
  • R for Data Science and Tidyverse Cheat Sheet
View all 47 topics in Data Science