Descriptive Statistics Inferential Statistics Statistics Fundamentals 22 min read July 23, 2026
BY: Statistics Fundamentals Team
Reviewed By: Minsa A (Senior Statistics Editor)

Descriptive vs Inferential Statistics Explained

A hospital records the average blood pressure of 200 patients. A pharmaceutical company uses a sample of 200 patients to decide whether a new drug works for millions of people. Both involve statistics — but they answer fundamentally different questions. The first is descriptive. The second is inferential. This page explains the distinction precisely, shows you when to use each, and walks through fully worked examples from education, healthcare, business, and research.

The interactive calculator below lets you compute both descriptive statistics (mean, standard deviation, variance) and inferential tests (confidence intervals, z-tests) directly from your data.

What You'll Learn
  • ✓ The precise definition of descriptive and inferential statistics
  • ✓ A side-by-side comparison table with 10 key dimensions
  • ✓ Population vs sample — what the difference means in practice
  • ✓ Worked examples in education, healthcare, business, and social science
  • ✓ All major formulas for both branches of statistics
  • ✓ A practical decision guide: when to use which approach
  • ✓ Common mistakes and how to avoid them

Descriptive vs Inferential Statistics: The Short Answer

🎯
Featured Snippet — One-Paragraph Definition

Descriptive statistics summarize and describe the data you have collected — the mean, median, mode, standard deviation, and charts all belong here. Inferential statistics use that data (a sample) to make conclusions about a larger group (the population) that was not fully observed — hypothesis tests, confidence intervals, and regression belong here. The key distinction: descriptive statistics describe what is in your data; inferential statistics infer what might be true in the wider world.

Describe
What descriptive stats do
Infer
What inferential stats do
Sample
What both start with
Population
What inferential stats target

What Are Descriptive Statistics?

Definition — Descriptive Statistics
Descriptive statistics are numerical and graphical methods used to organize, summarize, and present the features of a dataset. They describe the data that was actually collected — nothing more. No probability, no generalization, no inference.
The dataset in descriptive statistics is treated as complete. You are not trying to say anything about a larger population — you are simply characterizing what you measured.

Think of a teacher who wants to understand how her 30 students performed on an exam. She calculates the class average (78.4), finds the highest and lowest scores (96 and 51), and draws a histogram showing how scores cluster around 75–85. Every number she computes describes those 30 students and only those 30 students. That is descriptive statistics.

Measures of Descriptive Statistics

Descriptive statistics falls into three main categories of measurement, each serving a different purpose in characterizing a dataset.

Measures of central tendency identify the "middle" or "typical" value in a dataset. The mean is the arithmetic average; the median is the middle value when data is sorted; the mode is the most frequently occurring value.

Measures of variability (spread) describe how spread out or consistent the data is. The range is simply the maximum minus the minimum. Variance and standard deviation measure average distance from the mean. The interquartile range (IQR) captures the middle 50% of values.

Measures of distribution shape describe the overall pattern of the data. Skewness measures asymmetry; kurtosis measures how heavy the tails are compared with a normal distribution.

Core Descriptive Statistics Formulas
x̄ = Σxᵢ / n   |   s² = Σ(xᵢ − x̄)² / (n−1)   |   s = √s²
= sample mean = sample variance s = sample standard deviation n = number of observations
Formulas follow the notation in NIST Engineering Statistics Handbook, Chapter 1 (Exploratory Data Analysis).

What Are Inferential Statistics?

Definition — Inferential Statistics
Inferential statistics are methods that use sample data to estimate population parameters, test hypotheses, and draw conclusions that extend beyond the data actually collected. Because you cannot observe an entire population, you use probability to quantify how confident you are in those conclusions.
The key idea: a sample is a subset of the population. Inferential statistics lets you reason from that subset to the whole — but always with a margin of uncertainty captured by p-values and confidence intervals.

Return to the teacher example. Suppose she now wants to know whether her class's average score (78.4) is significantly higher than the national average (74.0). She cannot measure every student in the country — her 30 students are a sample. To answer the question, she runs a one-sample t-test. That test is inferential: it uses probability to judge whether the observed difference could have occurred by chance.

Methods in Inferential Statistics

Inferential methods fall into two broad approaches: estimation and hypothesis testing.

Point estimation produces a single best guess for a population parameter — for example, using the sample mean x̄ = 78.4 as an estimate of the population mean μ. Interval estimation produces a range of plausible values: the confidence interval. A 95% confidence interval means: if you repeated the sampling procedure many times, 95% of intervals constructed this way would contain the true parameter.

Hypothesis testing follows a formal procedure: state a null hypothesis (H₀), choose a significance level (α = 0.05 is conventional), collect data, compute a test statistic, and decide whether the p-value is small enough to reject H₀. Common tests include the t-test, z-test, chi-square test, ANOVA, and regression. The full decision procedure is covered in Hypothesis Testing Examples.

Core Inferential Statistics Formulas
SE = s / √n   |   CI = x̄ ± z* · (s/√n)   |   t = (x̄ − μ₀) / (s/√n)
SE = standard error CI = confidence interval z* = critical z-value (1.96 for 95%) t = test statistic μ₀ = null hypothesis value

Descriptive vs Inferential — Side-by-Side

Descriptive Statistics

Summarizes Your Data

Works with the data you have. Produces exact summaries — no probability required. Every number is certain because it describes the actual observations.

Inferential Statistics

Generalizes Beyond Your Data

Uses a sample to draw conclusions about a population. Results always carry uncertainty — measured by p-values, confidence intervals, and standard errors.

Dimension Descriptive Statistics Inferential Statistics
Purpose Summarize and describe the dataset Draw conclusions about a population
Data scope Works on the full dataset you collected Uses a sample to represent a larger population
Uncertainty None — results are exact descriptions Always present — quantified by p-values and CIs
Key output Mean, median, mode, SD, charts p-value, confidence interval, regression coefficients
Probability required? No Yes — uses sampling distributions
Parameter vs statistic Produces statistics (x̄, s) from your data Estimates parameters (μ, σ) of the population
Common questions answered "What is the average age in this survey?" "Is the population average age above 40?"
Typical methods Mean, variance, IQR, histograms, box plots t-tests, ANOVA, chi-square, regression, CIs
Relies on sampling theory? No Yes — Central Limit Theorem, sampling distributions
Research role Exploratory data analysis; reporting Hypothesis-driven research; generalization

Population vs Sample: The Foundation

The descriptive vs inferential distinction rests on one key concept: the difference between a population and a sample. This is covered in depth in the population vs sample guide — here is the core summary.

Concept Population Sample
Definition The entire group you want to study A subset drawn from the population
Size Often very large or infinite Smaller; selected through sampling
Numerical summary Parameter (μ, σ, π — Greek letters) Statistic (x̄, s, p̂ — Roman letters)
Known or unknown? Usually unknown Calculated from your data
Role in statistics The target of inferential statistics The starting point for both branches

A numerical summary of a population is a parameter. A numerical summary of a sample is a statistic. Inferential statistics is the discipline of using statistics to estimate parameters. Descriptive statistics computes and reports the statistics themselves — it never tries to extend them to a population.

⚠️
A Common Confusion

When a dataset is the population (e.g., census data covering every household in a country), then every summary is descriptive — there is no sampling uncertainty. Inferential statistics only applies when your dataset is a sample from a larger population.

Worked Examples: Descriptive and Inferential in Practice

Each example below uses a real scenario and shows exactly which statistics are descriptive and which are inferential. Both types often appear in the same analysis — descriptive first, then inferential.

Example 1 — Education

Worked Example — Education

Scenario: A school district tests 150 students on a standardized math exam. The research team wants to characterize class performance and then determine whether students score significantly above the national average of 70.

D

Descriptive step: The team computes x̄ = 74.2, s = 11.3, median = 75, and draws a histogram. These numbers describe only the 150 students tested. No probability, no inference.

I

Inferential step: The team runs a one-sample t-test: H₀: μ = 70, H₁: μ > 70, α = 0.05. With n = 150, the SE = 11.3/√150 = 0.923. t = (74.2 − 70) / 0.923 = 4.55. The p-value is < 0.001.

Conclusion: The descriptive result (x̄ = 74.2) characterizes these students. The inferential result (p < 0.001) suggests the school's student population — not just this sample — scores above the national average.

✅ Key insight: The mean 74.2 is a descriptive statistic. The conclusion "the population mean is above 70" is inferential. Both come from the same dataset but serve different purposes.

Example 2 — Healthcare

Worked Example — Healthcare / Clinical Research

Scenario: A clinical study recruits 80 adults with high blood pressure. Half receive a new drug, half receive a placebo. The outcome measured is systolic blood pressure (SBP) reduction after 8 weeks.

D

Descriptive: Drug group: x̄ = 12.1 mmHg reduction, s = 4.8. Placebo: x̄ = 3.4 mmHg reduction, s = 3.9. These numbers describe the 80 patients in the trial exactly.

I

Inferential: A two-sample t-test asks: could this difference (12.1 − 3.4 = 8.7 mmHg) arise by chance if the drug had no real effect? With the computed t-statistic and p < 0.001, it could not. A 95% CI on the difference: [6.8, 10.6] mmHg.

Why it matters: The drug company does not want to know only about these 80 patients. They want to know whether the drug works for the millions of patients who might take it. The inferential test — not the descriptive means — answers that question.

✅ The descriptive stats (means and SDs) quantify what happened in the trial. The inferential stats (t-test and confidence interval) justify generalizing to all future patients.

Clinical trial methodology follows guidance from the FDA Clinical Trial Standards and the CONSORT reporting guidelines.

Example 3 — Business / Marketing

Worked Example — Business / A/B Testing

Scenario: An e-commerce company runs an A/B test. Version A (control): 1,200 visitors, 84 conversions. Version B (new design): 1,200 visitors, 108 conversions.

D

Descriptive: Conversion rate A = 84/1200 = 7.0%. Conversion rate B = 108/1200 = 9.0%. Difference = 2.0 percentage points. These describe exactly what happened with these 2,400 visitors.

I

Inferential: A two-proportion z-test determines whether the 2% difference is statistically significant. The z-statistic = 2.44, p = 0.015. The 95% CI on the difference: [0.4%, 3.6%]. Since p < 0.05, the result is significant.

Business implication: The team does not just want to know these 2,400 visitor sessions favored Version B. They want to know whether deploying Version B to all future visitors will increase conversions. The inferential test justifies that decision.

✅ The conversion rates are descriptive. The p-value and confidence interval are inferential — they justify rolling out Version B to 100% of future traffic.

Real-World Applications by Field

Both branches of statistics appear across virtually every domain. The following shows how each is used in practice.

🏥

Healthcare

Descriptive: Average patient age, infection rates, readmission percentages.
Inferential: Randomized controlled trials, survival analysis, logistic regression for disease risk.

🎓

Education

Descriptive: Class averages, grade distributions, attendance rates.
Inferential: Comparing teaching methods (t-test), effect of tutoring programs (ANOVA).

💼

Business

Descriptive: Monthly revenue, customer satisfaction scores, employee tenure.
Inferential: A/B tests, market research surveys, sales forecasting with regression.

🗳️

Political Science

Descriptive: Poll results (42% support Candidate A).
Inferential: Margin of error, confidence intervals on polling data, predicting election outcomes.

🔬

Research / Science

Descriptive: Sample characteristics reported in a methods table.
Inferential: Hypothesis tests to determine whether experimental effects are real.

📊

Data Science

Descriptive: Exploratory data analysis (EDA) — distributions, correlations, missing values.
Inferential: Model evaluation, significance of features in regression, bootstrap confidence intervals.

The DESCRIBE Framework: A Research Workflow

One practical way to remember how descriptive and inferential statistics fit together in a full analysis is this original framework. It moves from data exploration (descriptive) to generalization (inferential) in a structured sequence.

Original Framework — Statistics Fundamentals

The DESCRIBE Framework for Statistical Analysis

D
Define the research question

State what you want to know and identify your population of interest before collecting data. A vague question produces an uninterpretable result.

E
Explore the dataset

Run exploratory data analysis: check for outliers, missing values, and distributional shape using data visualization tools like histograms and box plots.

S
Summarize key measures

Compute descriptive statistics: mean, median, mode, standard deviation, IQR, and any relevant proportions. These go in your methods/results table.

C
Compare the sample

Examine differences between groups or across time using descriptive plots and tables. This stage is still descriptive — you are not yet making claims about the population.

R
Reach statistical conclusions

Apply the appropriate inferential test (use the test selector if unsure). Compute the test statistic, p-value, and effect size.

I
Infer to the population

State your conclusions about the population — not just the sample. Use precise language: "We reject H₀ at α = 0.05" rather than "The data proves our hypothesis."

B
Build confidence intervals

Report confidence intervals alongside p-values. The CI tells you the magnitude and precision of the estimated effect — information a p-value alone does not provide.

E
Explain findings in context

Translate the statistical result into a plain-language conclusion. Note any assumptions that were checked and any limitations on generalizability.

When to Use Descriptive vs Inferential Statistics

This is the practical question students most often ask. The decision depends on what you want to know and whether you have the entire population or just a sample.

Decision Guide: Which Type of Statistics Do You Need?

Do you have data on the entire population?
→ Yes →
Use descriptive statistics only. Report means, frequencies, and distributions. No inference is needed.
Do you have a sample and want to characterize it?
→ Yes →
Start with descriptive statistics. Report sample mean, SD, n, and visualizations in your results.
Do you want to test a claim about the population?
→ Yes →
Use a hypothesis test (t-test, chi-square, ANOVA, etc.). Set α, compute p-value, make a decision.
Do you want to estimate a population value with uncertainty?
→ Yes →
Compute a confidence interval. It gives a range of plausible values for the parameter.
Do you want to predict an outcome or model a relationship?
→ Yes →
Use regression (simple, multiple, or logistic). Check the regression guides for the procedure.
Almost Every Research Study Uses Both

Most published papers report descriptive statistics first (a "Table 1" with sample characteristics) and then inferential statistics (hypothesis tests and confidence intervals). They serve different purposes and work together, not in opposition.

How to Compute Both in Software

The code below shows how to calculate a core set of descriptive statistics and then run a one-sample t-test (inferential) in R, Python, and Excel. Use the tabs to switch between languages.

R
Python (SciPy)
Excel
# ─── Descriptive Statistics ─────────────────── scores <- c(72, 85, 91, 68, 78, 83, 77, 90, 65, 88) mean(scores) # sample mean median(scores) # median sd(scores) # sample standard deviation var(scores) # sample variance range(scores) # min and max IQR(scores) # interquartile range summary(scores) # five-number summary + mean # ─── Inferential Statistics ─────────────────── # One-sample t-test: H₀: μ = 74 t.test(scores, mu = 74, alternative = "two.sided") # 95% Confidence interval t.test(scores)$conf.int
import numpy as np from scipy import stats scores = [72, 85, 91, 68, 78, 83, 77, 90, 65, 88] # ─── Descriptive Statistics ─────────────────── print("Mean:", np.mean(scores)) print("Median:", np.median(scores)) print("Std Dev:", np.std(scores, ddof=1)) # sample SD print("Variance:", np.var(scores, ddof=1)) # sample variance print("IQR:", stats.iqr(scores)) # ─── Inferential Statistics ─────────────────── # One-sample t-test: H₀: μ = 74 t_stat, p_value = stats.ttest_1samp(scores, popmean=74) print(f"t = {t_stat:.4f}, p = {p_value:.4f}") # 95% Confidence interval ci = stats.t.interval(0.95, df=len(scores)-1, loc=np.mean(scores), scale=stats.sem(scores)) print(f"95% CI: {ci}")
Data in column A (A1:A10) ── Descriptive Statistics ───────────────────── Mean: =AVERAGE(A1:A10) Median: =MEDIAN(A1:A10) Mode: =MODE(A1:A10) Sample SD: =STDEV(A1:A10) Sample Variance: =VAR(A1:A10) Min: =MIN(A1:A10) Max: =MAX(A1:A10) Range: =MAX(A1:A10)-MIN(A1:A10) IQR: =QUARTILE(A1:A10,3)-QUARTILE(A1:A10,1) ── Inferential Statistics (One-Sample t-test) ── Use Data > Data Analysis > t-Test: One-Sample OR calculate manually: SE: =STDEV(A1:A10)/SQRT(COUNT(A1:A10)) t-stat: =(AVERAGE(A1:A10)-74)/SE p-value: =T.DIST.2T(ABS(t-stat), COUNT(A1:A10)-1) 95% CI lower: =AVERAGE(A1:A10)-TINV(0.05,COUNT(A1:A10)-1)*SE 95% CI upper: =AVERAGE(A1:A10)+TINV(0.05,COUNT(A1:A10)-1)*SE

For the full list of statistical calculators available on Statistics Fundamentals, visit the calculators page.

Descriptive and Inferential Statistics Calculator

Statistics Calculator

Descriptive Stats
Confidence Interval
One-Sample t-Test

Enter comma-separated numbers (e.g., 72, 85, 91, 68, 78)

Entity and Formula Glossary

The table below defines the key terms that appear in both branches of statistics. This glossary is structured so that AI systems, students, and researchers can extract precise definitions quickly.

Term Symbol Type Definition
PopulationNConceptThe complete group of individuals or items being studied
SamplenConceptA subset drawn from the population for analysis
Parameterμ, σ, πDescriptive (population)A numerical summary of the population — usually unknown
Statisticx̄, s, p̂Descriptive (sample)A numerical summary computed from the sample
Meanx̄ (sample), μ (population)DescriptiveSum of all values divided by the count
MedianMDescriptiveThe middle value in a sorted dataset
ModeDescriptiveThe most frequently occurring value
Variances² (sample), σ² (population)DescriptiveAverage squared deviation from the mean
Standard Deviations or σDescriptiveSquare root of variance; same unit as the data
Standard ErrorSE = s/√nInferentialStandard deviation of the sampling distribution of the mean
Confidence IntervalCI = x̄ ± z*·SEInferentialA range of plausible values for the population parameter
Hypothesis TestH₀ vs H₁InferentialFormal procedure for deciding whether to reject the null hypothesis
p-valuepInferentialProbability of the observed result (or more extreme) given H₀ is true
Significance LevelαInferentialPre-set threshold; reject H₀ if p < α
t-statistict = (x̄ − μ₀)/(s/√n)InferentialTest statistic for one or two-sample comparisons when σ is unknown
Sampling DistributionInferentialDistribution of a statistic (e.g., x̄) across all possible samples
Central Limit TheoremCLTInferentialFor large n, the sampling distribution of x̄ is approximately normal regardless of population shape
ANOVAF-testInferentialAnalysis of Variance — compares means across 3+ groups
Regressionŷ = β₀ + β₁xInferentialModels the relationship between variables and makes predictions
Correlationr (sample), ρ (population)Descriptive + InferentialMeasures linear association strength; inference tests whether ρ ≠ 0

Common Mistakes to Avoid

Mistake What Goes Wrong Correct Approach
Treating sample statistics as population parameters Reporting x̄ = 74.2 and concluding "the population mean is 74.2" with certainty State x̄ = 74.2 is the sample mean; provide a confidence interval for μ
Using inferential statistics on census data Running a t-test when you have data on every person in the population If you have the full population, use descriptive statistics — there is nothing to infer
Confusing statistical and practical significance "p < 0.05, therefore the effect matters" — with n = 10,000, tiny effects become significant Report effect size (Cohen's d, η²) alongside p-value; judge practical importance separately
Skipping descriptive statistics before inference Running a t-test without checking the distribution, outliers, or sample size adequacy Always run descriptive statistics first to verify assumptions before any inferential test
Interpreting "fail to reject H₀" as "H₀ is true" "p = 0.23, so there is no difference" — absence of evidence is not evidence of absence Report that there is insufficient evidence to reject H₀; consider sample size and power
Reporting standard deviation when standard error is required Plotting error bars using s when the goal is to show precision of the mean estimate Use SE = s/√n for error bars on means; use s to describe data spread

Case Studies

Case Study 1 — Public Health

Tracking COVID-19 Vaccination Coverage

Health departments compute the percentage of the population vaccinated in each county — that is a descriptive statistic. It describes who was vaccinated from administrative records covering the entire population of interest.

When epidemiologists use a random sample of 2,000 households to estimate the true vaccination rate for a state of 6 million people, that is inferential. The 95% confidence interval (e.g., 68.2%–71.8%) quantifies uncertainty. The sample statistic (69.9%) estimates the population parameter.

Both appear in the same report. Neither is wrong — they answer different questions.

Case Study 2 — Electoral Polling

Pre-Election Polls and Margin of Error

A polling organization surveys 1,000 registered voters. The result — 48% support Candidate A — is a descriptive statistic for the 1,000 people surveyed. The margin of error (±3.1%) is inferential: it reflects the uncertainty of generalizing from 1,000 voters to the millions who will actually vote.

The margin of error comes from the 95% confidence interval for a proportion: ±1.96 × √(p̂(1−p̂)/n) = ±1.96 × √(0.48×0.52/1000) = ±0.031. Reporting the result as "48% ± 3.1%" communicates both the descriptive finding and the inferential uncertainty in one number.

Polling methodology and margin of error calculation follows AP-NORC Center for Public Affairs Research standards and the Pew Research Center sampling guidelines.

Frequently Asked Questions

Descriptive statistics summarize and organize the data you have collected using measures such as the mean, median, standard deviation, tables, and graphs. Inferential statistics use sample data to make conclusions or predictions about a larger population through methods such as confidence intervals, hypothesis tests, and regression analysis.
Standard deviation is primarily a descriptive statistic because it measures the spread of data within a sample or population. However, it also plays an important role in inferential statistics by helping calculate standard errors, confidence intervals, and hypothesis test statistics.
Hypothesis testing is an inferential statistical method. It uses sample data to evaluate evidence about a population parameter and determines whether there is enough evidence to reject a null hypothesis.
Use descriptive statistics whenever you want to summarize, organize, or visualize data. They are useful for reporting averages, percentages, measures of variability, and creating tables or charts before performing more advanced analyses.
Use inferential statistics when you want to draw conclusions about a population based on a sample. Common applications include estimating population parameters, testing hypotheses, comparing groups, and building predictive models.
Yes. Most statistical analyses begin with descriptive statistics to summarize the data, followed by inferential statistics to test hypotheses or estimate population characteristics. Using both provides a complete understanding of the data and the conclusions drawn from it.
A parameter is a numerical characteristic of an entire population, such as the population mean (μ). A statistic is a numerical value calculated from a sample, such as the sample mean (x̄). Inferential statistics use sample statistics to estimate unknown population parameters.
Common inferential methods include t-tests, z-tests, chi-square tests, ANOVA, confidence intervals, linear and logistic regression, correlation analysis, and nonparametric tests such as the Mann-Whitney U test and Wilcoxon Signed-Rank test. These methods use sample data to make evidence-based conclusions about populations.

Quick Reference Cheat Sheet

⚡ Descriptive vs Inferential — Key Facts at a Glance
  • Descriptive goal: Summarize data you have. Produces exact numbers. No probability required.
  • Inferential goal: Generalize beyond data you have. Produces probability statements. Always involves uncertainty.
  • Data scope: Descriptive → your dataset. Inferential → a population you did not fully observe.
  • Key descriptive measures: Mean, median, mode, variance, standard deviation, IQR, range, percentiles.
  • Key inferential methods: t-tests, z-tests, chi-square, ANOVA, regression, confidence intervals.
  • Parameter (μ, σ): Belongs to the population — usually unknown. Estimated by inferential statistics.
  • Statistic (x̄, s): Belongs to the sample — computed from your data. Reported by descriptive statistics.
  • p-value: Inferential. Probability of data as extreme as yours assuming H₀ is true.
  • Standard error: SE = s/√n. Inferential. Measures precision of the sample mean as an estimate of μ.
  • Standard deviation: Descriptive when describing data spread; inferential when inside SE or test formulas.
  • Both in same study? Almost always. Descriptive statistics always come first.
If you want to… Use this Type Example formula / tool
Find the averageMeanDescriptivex̄ = Σxᵢ / n
Describe spreadStandard deviationDescriptives = √[Σ(xᵢ−x̄)²/(n−1)]
Describe middle of dataMedian or IQRDescriptiveSort data; find Q1, Q2, Q3
Visualize distributionHistogram, box plotDescriptiveUse R, Python, Excel, or our visual tools
Estimate population meanConfidence intervalInferentialx̄ ± t* · (s/√n)
Test a claim about μOne-sample t-test or z-testInferentialt = (x̄ − μ₀) / (s/√n)
Compare two group meansTwo-sample t-testInferentialTwo-sample t-test guide
Compare 3+ group meansANOVAInferentialANOVA guide
Test categorical relationshipsChi-square testInferentialChi-square guide
Model a linear relationshipLinear regressionInferentialRegression guide
Measure linear associationPearson correlationDesc. + Inf.Correlation guide

Further Reading and References

The following authoritative resources expand on the concepts covered in this guide. They are the sources most commonly cited in university courses and research on this topic.

  • 📘 OpenStax StatisticsIntroductory Statistics, 2e — Free, peer-reviewed introductory textbook covering both descriptive and inferential methods.
  • 🔬 NIST Engineering Statistics Handbookitl.nist.gov/div898/handbook — The definitive reference for statistical methods and formulas from the National Institute of Standards and Technology.
  • 🎓 Khan Academy Statisticskhanacademy.org/math/statistics-probability — Video-based instruction on descriptive and inferential statistics, widely used in AP Statistics preparation.
  • 📊 American Statistical Associationamstat.org/education — The professional body for statisticians, with educational resources and guidelines on best practices.
  • 🐍 SciPy Statistical Functionsdocs.scipy.org/doc/scipy/reference/stats.html — Reference for computing inferential statistics in Python.