Glossary
Inferential Statistics
Inferential statistics is the branch of statistics concerned with drawing conclusions about a population based on data from a sample. It encompasses estimation (using sample statistics to infer population parameters), hypothesis testing (evaluating claims about populations), a...
Definition
Inferential statistics is the branch of statistics concerned with drawing conclusions about a population based on data from a sample. It encompasses estimation (using sample statistics to infer population parameters), hypothesis testing (evaluating claims about populations), and prediction. Its core goal is to quantify uncertainty and generalise findings beyond the immediate data.
Why It Matters
Researchers rarely have access to entire populations. Inferential statistics provides the tools to make reasoned, probabilistic statements about populations while acknowledging the limitations of sample data. Without inference, research would be limited to describing the specific individuals studied, with no ability to test theories, evaluate policies, or inform decision-making.
Example
A polling company surveys 1,500 randomly selected voters and finds that 52% intend to vote for Party A. Inferential statistics tells us not only that the point estimate is 52%, but also that the 95% confidence interval is [49.5%, 54.5%]. Because the entire interval lies above 50%, the company infers — with 95% confidence — that Party A is likely leading in the electorate as a whole.
Related Terms
- Descriptive Statistics
- Hypothesis Testing
- Confidence Interval
- P-Value
- Statistical Significance
- Effect Size
Software Notes
- SPSS: All inferential procedures are under Analyze > Compare Means, Regression, General Linear Model, and Nonparametric Tests.
- R: Base R provides comprehensive inferential functions:
t.test(),aov(),lm(),glm(),chisq.test(), and many more. Thebroompackage tidies outputs into data frames. - Stata:
ttest,anova,regress,logit,prtest,ranksum, andsignrankare the core inferential commands.