A frequency table records how often each value appears. It is the step between a raw list of numbers and any chart or summary made from them, and doing it carelessly poisons everything downstream.
Building one
Here are twenty test scores out of ten.
7 9 6 7 10 8 7 5 9 8 6 7 8 9 10 7 6 8 9 7
| Score | Tally | Frequency |
|---|---|---|
| 5 | | | 1 |
| 6 | ||| | 3 |
| 7 | |||| | | 6 |
| 8 | |||| | 4 |
| 9 | |||| | 4 |
| 10 | || | 2 |
The frequencies add to twenty, which is the number of scores you started with. That check takes two seconds and catches almost every counting error.
Grouped data
When values spread over a wide range, listing every one produces a table as long as the data. Group them into equal intervals instead.
| Height in cm | Frequency |
|---|---|
| 130 to 139 | 4 |
| 140 to 149 | 9 |
| 150 to 159 | 11 |
| 160 to 169 | 5 |
| 170 to 179 | 1 |
Intervals must be equal in width and must not overlap. An interval of 130 to 140 followed by 140 to 150 leaves nowhere to put a height of exactly 140. Between five and eight intervals is usually right: fewer hides the shape, more scatters it back into noise.
Reading the table
The score table says the most common score was 7, that 30 percent of the class scored 7, and that only one student scored below 6. Each of those is a sentence about the class, and the point of the table is to make such sentences available at a glance.
Common mistakes
Not checking the total
Frequencies must add to the number of data values. If they do not, something was counted twice or missed.
Overlapping intervals
Every value must belong to exactly one interval.
Leaving out an empty value
If no one scored 4 and the table runs from 3 to 10, the row for 4 should appear with a frequency of zero. Deleting it makes the distribution look different from what it is.
Check yourself
In the score table, how many students scored 8 or more?
4 + 4 + 2 = 10 students, which is half the class.
Why must the frequencies add to 20?
Because every one of the twenty scores is counted exactly once, in exactly one row.
What is wrong with intervals of 0 to 10, 10 to 20, 20 to 30?
They overlap at the boundaries. A value of exactly 10 fits two intervals. Use 0 to 9, 10 to 19, 20 to 29 instead.
Twelve students are in the 150 to 159 group of a 40 student sample. What fraction is that?
12/40 = 3/10, which is 30 percent.
See also
Sources
- Frequency tables and grouped data as taught in United States middle grades mathematics. Data on this page is invented for illustration.
