No history yet

Descriptive Statistics

Summarizing Public Health Data

In public health, we deal with a lot of data: the number of flu cases in a season, the ages of patients in a clinical trial, or the blood pressure readings from a community screening. Just looking at a long list of numbers doesn't tell us much. We need a way to make sense of it all.

This is where descriptive statistics come in. They are the tools we use to summarize and organize data into a clear, understandable picture.

Descriptive statistics are a set of techniques used to summarize and describe the main features of a dataset.

Think of it like telling a story with data. Instead of reading every single word of a book (the raw data), you read the summary on the back cover (the descriptive statistics). It gives you the main points quickly. We'll look at two key parts of this story: finding the center of the data and measuring how spread out it is.

Finding the Center

One of the first things we want to know is what a 'typical' value in our dataset looks like. This is called the central tendency. There are three common ways to measure it: the mean, median, and mode.

Mean

noun

The sum of all values divided by the number of values. It's what most people think of as the 'average'.

To calculate the mean, you simply add up all your data points and divide by how many you have. For example, if we have the ages of five patients who visited a clinic — 10, 15, 20, 25, and 80 — the mean age is (10+15+20+25+80)/5=30(10 + 15 + 20 + 25 + 80) / 5 = 30 years. The mean is great, but it can be heavily influenced by outliers, which are unusually high or low values. That 80-year-old patient pulled the average up quite a bit.

Median

noun

The middle value in a dataset that has been arranged in order from smallest to largest.

The median gives us a different kind of 'typical'. For our patient ages (10, 15, 20, 25, 80), the middle number is 20. This is the median. Unlike the mean, the median isn't affected by that one high value of 80. This makes it a better measure of central tendency when your data is skewed or has outliers.

Mode

noun

The value that appears most frequently in a dataset.

The mode is the simplest of the three. If we asked patients to rate their satisfaction on a scale of 1 to 5 and the scores were 4, 5, 5, 3, 5, 2, 4, 5, the mode would be 5, because it's the most common score. The mode is especially useful for categorical data, like the most common eye color or blood type in a population.

Measuring the Spread

Knowing the center of the data is only half the story. We also need to understand its spread, or variability. Imagine two cities where the mean daily temperature is 15°C (59°F). In one city, the temperature is always between 12°C and 18°C. In the other, it swings from -5°C to 35°C. They have the same mean, but very different climates. Variability tells us how consistent or spread out the data points are.

Range

noun

The difference between the highest and lowest values in a dataset.

The simplest measure of spread is the range. For our patient ages (10, 15, 20, 25, 80), the range is $80 - 10 = 70$ years. It’s easy to calculate, but like the mean, it's very sensitive to outliers.

For a more robust understanding of spread, we use variance and standard deviation. These two measures are closely related. They describe the average distance of each data point from the mean. A small standard deviation means the data points are clustered tightly around the mean. A large standard deviation means they are spread far apart.

s=i=1n(xixˉ)2n1s = \sqrt{\frac{\sum_{i=1}^{n}(x_i - \bar{x})^2}{n-1}}

The standard deviation (represented by ss or σ\sigma) is the square root of the variance. While the formula might look intimidating, the concept is straightforward: it's a standard way of measuring how spread out the numbers in a dataset are. In public health, a doctor might use standard deviation to understand if a patient's blood pressure is within a normal range or if it's unusually high or low compared to the average.

Visualizing the Data

Numbers and statistics are powerful, but sometimes a picture is truly worth a thousand data points. Data visualization helps us see patterns, trends, and outliers that we might miss in a table of numbers.

A histogram is a bar chart that shows the frequency distribution of a set of continuous data. It groups numbers into ranges (or 'bins') and the height of the bar shows how many data points fall into that range.

Imagine we have the heights of 100 people. A histogram could show us how many people are in the 150-160 cm range, how many are 160-170 cm, and so on. This quickly reveals the shape of our data. Is it symmetric, like a bell curve? Or is it skewed to one side?

Another powerful tool is the box plot, sometimes called a box-and-whisker plot. A box plot provides a five-number summary of the data: the minimum, the first quartile (Q1), the median, the third quartile (Q3), and the maximum.

The 'box' represents the middle 50% of the data, also known as the interquartile range (IQR). The 'whiskers' extend to the minimum and maximum values (excluding outliers, which are sometimes plotted as individual points).

Box plots are excellent for comparing the distribution of data between different groups. For instance, we could use them to compare the recovery times for patients on a new drug versus those on a placebo. We could quickly see which group had a shorter median recovery time and which had more variability in its results.

Let's test your understanding of these foundational concepts.

Quiz Questions 1/6

What is the primary purpose of descriptive statistics in public health?

Quiz Questions 2/6

A researcher is studying the length of hospital stays for a group of patients. The data (in days) is: 3, 4, 5, 5, 6, 7, 25. Which measure of central tendency would be most affected by the 25-day stay?

Mastering these descriptive statistics is the first step in any data analysis. They allow us to distill large, complex datasets into simple, meaningful summaries that can inform public health decisions.