Data Distribution

1 Data Distribution

When we collect data — whether it is exam scores, household incomes, the heights of plants, or the number of daily website visits — those values do not simply exist as a flat list of numbers. They form a pattern. Some values appear frequently, others rarely. Some datasets cluster tightly around a central point, while others are scattered broadly across a wide range. This pattern of how data values are spread across their possible range is called a data distribution.

Understanding a distribution means asking: where do most of the values sit? How far do they spread? Is the pattern balanced, or does it lean more to one side? These questions are not merely aesthetic — they are fundamental to choosing the right statistical tools, drawing valid conclusions, and communicating findings accurately. Before calculating any average or measure of spread, a statistician's first task is almost always to examine the shape of the distribution.

Visualising a distribution is the most natural starting point. Three common tools achieve this:

A critical insight is that two datasets can share the same mean yet have completely different distributions. Consider two classes of students, both with a mean exam score of 65 out of 100. In Class A, nearly every student scored between 60 and 70 — a tight cluster. In Class B, half the students scored below 40 and half scored above 85 — a wide spread with almost nobody near the mean. Reporting only the mean hides this crucial difference. The shape and spread of the distribution provide the essential context that averages alone cannot.

With that foundation in place, we can explore the specific types of distributions that arise most frequently in data analysis.

A symmetrical distribution is one where the left and right halves are mirror images of each other when folded at the centre. The most famous example is the normal distribution (also called the bell curve), which appears in many natural phenomena: human heights, measurement errors, standardised test scores. In a perfectly symmetrical distribution, three measures of central tendency coincide at a single point:

Because all three measures agree, any of them can fairly represent a "typical" value. Symmetry also tells us that the chances of a randomly selected data point falling a given distance above the centre are equal to the chances of it falling the same distance below — the distribution is balanced. Recognising symmetry is practically important: many powerful statistical techniques (such as parametric tests like the t-test) assume or work best with roughly symmetrical data, so confirming or ruling out symmetry is an early diagnostic step.

Real-world data, however, is often not perfectly symmetrical. It may have a longer "tail" — a stretch of values — extending further to one side than the other. This property is called skewness. Skewness measures the degree and direction of asymmetry in a distribution. There are three possibilities:

A key practical consequence of skewness is its effect on the relationship between the mean and the median. Because the mean is computed using every value, it is sensitive to extreme values at the end of a tail and is therefore pulled in the direction of the tail. The median, which depends only on the rank ordering of values, resists this pull. This means that when skewness is present, the mean and median diverge, and that divergence is itself a signal of skewness. Identifying skewness therefore directly informs which measure of central tendency — mean or median — is more honest and representative for a given dataset.

In a positively skewed (right-skewed) distribution, the bulk of data values cluster at the lower end of the scale, with a long tail stretching out to the right toward higher values. The classic real-world example is household income. Most households earn a moderate income, but a small number of extremely high earners pull the tail far to the right. Other examples include:

In a right-skewed distribution the relationship between the three measures of centre follows a consistent pattern:

Measure Position relative to centre Explanation
Mode Lowest (leftmost) The most common value is in the dense cluster at the lower end.
Median Middle The middle-ranked value sits just above the mode, within the cluster.
Mean Highest (rightmost) The mean is pulled toward the high-value tail, inflating it above the median.

Because the mean is inflated by the high-value tail, it overstates what a "typical" observation looks like. If a government report states that the mean household income is £45,000 but the median is £28,000, the median is the more honest figure for describing the experience of a typical household. Analysts working with right-skewed data often apply transformations (such as taking the logarithm of values) to reduce the skew before further statistical analysis.

A negatively skewed (left-skewed) distribution is the mirror image: most data values cluster at the higher end of the scale, with a long tail stretching to the left toward lower values. Real-world examples include:

The ordering of measures in a left-skewed distribution is the reverse of the right-skewed case:

Measure Position relative to centre Explanation
Mean Lowest (leftmost) Pulled down by the few unusually low values in the left tail.
Median Middle Sits above the mean, within the main cluster of values.
Mode Highest (rightmost) The most common value is in the dense cluster at the upper end.

Again, the median provides a more representative description of the typical data point, since the mean is deflated by the outlying low values in the tail. The general principle holds in both directions of skew: the median is more robust to skewness than the mean.

Beyond shape and skewness, the spread of a distribution is equally important for a full characterisation. Two distributions can be the same shape — both symmetric bell curves, for instance — and yet one might span a narrow range of values while the other spans a wide range. The spread describes how much variability exists in the data:

The primary numerical measures used to quantify spread are:

Shape and spread must be described together for a distribution to be fully understood. Saying "the mean is 50" is incomplete. Saying "the distribution is approximately symmetric with a mean of 50 and a standard deviation of 5" is far more informative — it tells us that most values fall in a predictable range around 50, that no tail is distorting the picture, and that we can anticipate roughly how extreme any given observation might be.

Bringing all of this together, here is a practical step-by-step approach to recognising and describing a distribution:

To illustrate these steps concretely, consider the following small dataset of daily call durations (in minutes) recorded at a customer service centre:

2, 3, 3, 4, 4, 4, 5, 5, 6, 7, 8, 12, 18, 25

A histogram of these values would show a cluster of short calls on the left and a long tail of a few very long calls stretching to the right — a clear right-skewed shape. Computing the measures:

Measure Value (minutes)
Mean 7.57
Median 5.0
Mode 4
Range 23
Standard deviation ≈ 6.2

The mean (7.57 minutes) is substantially higher than the median (5.0 minutes) and mode (4 minutes), confirming the right skew observed in the histogram. The three outlying long calls (12, 18, and 25 minutes) have dragged the mean upward, making it an unrepresentative summary of a typical call. A manager reporting that the "average" call lasts 7.57 minutes would give a misleading picture; reporting the median of 5 minutes would be far more informative about what a typical agent experiences. The large standard deviation (≈ 6.2 minutes) relative to the median (5 minutes) also signals the high variability introduced by those extreme values.

Developing the habit of examining distributions — rather than jumping straight to calculating means — is one of the most valuable skills in statistics and data analysis. It prevents misleading conclusions, guides the choice of appropriate methods, and ensures that summaries genuinely reflect the data rather than obscure it.

NotesThe example dataset in the final section is small enough for learners to verify by hand, which reinforces the connection between the abstract concept of skewness and concrete numerical computation. Instructors may wish to have learners draw a rough histogram of the call duration data themselves before revealing the computed measures, to practise the visual-first approach described in the recognition steps.