Introduction to Descriptive Statistics

1 Introduction to Descriptive Statistics

Every time a researcher publishes an average salary, a sports commentator quotes a batting average, or a public health official reports that the median age of infection is 45, they are using descriptive statistics. At its core, descriptive statistics is the branch of statistics concerned with summarising, organising, and presenting data in a way that is both accurate and digestible. Rather than drawing conclusions about populations from samples — which is the domain of inferential statistics — descriptive statistics simply describes what is actually in the data. This makes it the natural and essential first step in virtually any data-driven analysis.

To appreciate why this matters, consider a dataset containing the annual incomes of 50,000 households in a country. Listing all 50,000 individual values communicates almost nothing useful to a reader. But reporting that the median household income is £34,500, that the middle 50% of households earn between £22,000 and £51,000, and that the distribution is positively skewed (meaning a small number of very high earners pull the average upward) immediately tells a compelling and accurate story. Descriptive statistics transforms raw numbers into insight.

What Are Descriptive Statistics?

Descriptive statistics are numerical or visual summaries that capture the key characteristics of a dataset. They condense large volumes of raw data — which might span thousands or millions of individual observations — into a compact set of values or charts that convey the essential story of the data. There are two broad forms these summaries can take:

Both forms are complementary. A single mean value can be misleading without knowing how spread out the data is, and a histogram becomes more interpretable when accompanied by exact numerical measures. Together, they provide a complete, honest portrait of the data.

Why Descriptive Statistics Matter

The practical importance of descriptive statistics is difficult to overstate. Consider just a few contexts in which they are indispensable:

Sound decisions in business, science, medicine, and public policy are routinely built on the foundation of well-summarised descriptive data. A government setting a minimum wage, a pharmaceutical company evaluating a clinical trial, and an e-commerce platform optimising its pricing strategy all rely on descriptive summaries as the starting point for understanding what the data shows.

Key Categories of Descriptive Statistics

Descriptive statistics are conventionally grouped into three major categories, each answering a different fundamental question about the data:

The table below summarises the three categories and their primary measures:

Category Question Answered Common Measures
Central Tendency What is a typical value? Mean, Median, Mode
Variability How spread out are the values? Range, Variance, Standard Deviation, IQR
Distribution Shape How are values arranged across the range? Skewness, Kurtosis

Summarising Data Meaningfully

A critical insight — one that separates skilled data practitioners from novices — is that not every statistical measure is appropriate for every dataset. The choice of summary measure must be guided by context and, crucially, by the type of data being analysed.

A meaningful summary also avoids the trap of oversimplification. Reporting only the mean salary at a company might create the impression of prosperity, when in fact a handful of executives earn vastly more than the majority of employees. Reporting the mean and the median and the standard deviation together would reveal this disparity. A classic cautionary example is Anscombe's Quartet — four different datasets that share nearly identical means, medians, variances, and correlations, yet look completely different when graphed. This illustrates powerfully why combining numerical summaries with visual representations is always good practice.

Consider the following small example. Suppose seven employees have annual salaries (in thousands of pounds) of:

22, 25, 27, 28, 30, 33, 120

The mean is (22 + 25 + 27 + 28 + 30 + 33 + 120) ÷ 7 = 285 ÷ 7 ≈ £40,700. The median (middle value of the ordered list) is £28,000. These two numbers tell strikingly different stories. The mean is distorted by the single outlier of £120,000, making the typical worker appear much better-paid than they are. The median gives a far more representative picture. This is exactly why, when summarising income, house prices, or any data with influential outliers, experienced analysts routinely report the median rather than — or alongside — the mean.

Descriptive Statistics as a Starting Point

In professional data analysis, exploratory work with descriptive statistics is never skipped, even when the ultimate goal is complex modelling or machine learning. This exploratory phase — often called Exploratory Data Analysis (EDA) — serves several vital functions:

Perhaps most importantly, mastery of descriptive statistics builds the conceptual vocabulary and quantitative intuition required to engage confidently with more advanced methods. Concepts like the normal distribution, hypothesis testing, confidence intervals, and regression all depend on a solid understanding of means, variances, and distributional shape. An analyst who can fluently describe data with descriptive statistics has the intellectual scaffolding in place to learn and apply virtually any statistical or machine learning technique that follows.

In summary, descriptive statistics are not merely a preliminary formality — they are a powerful set of tools in their own right, essential to understanding data honestly, communicating findings clearly, and making well-informed decisions. Every subsequent statistical concept builds on this foundation.

NotesThis topic serves as the conceptual anchor for the entire module. Emphasis on the three categories (central tendency, variability, shape) and the importance of combining multiple measures sets up the detailed topics that follow. The Anscombe's Quartet reference and the salary outlier example are useful for reinforcing why no single statistic tells the whole story.