Cumulative frequency is a running total of the frequencies. For each class boundary it answers one question: how many values are less than or equal to this value? You build it by adding each class frequency on to the total so far.
Take three classes with frequencies
| Class (upper boundary) | Frequency | Cumulative frequency |
|---|---|---|
| ≤ 10 | 4 | 4 |
| ≤ 20 | 10 | 4 + 10 = 14 |
| ≤ 30 | 6 | 14 + 6 = 20 |
The final cumulative frequency,
Plot each cumulative frequency against the upper class boundary of its class and join the points. The result is a smooth, rising, S-shaped curve called an ogive. From it you can read off the key summary values: go up to the curve from the right cumulative-frequency height, then across.