Reading and interpreting data
Data rarely arrives as a tidy list of numbers. You meet it as a table on a sports website, a frequency chart of marks in your report card, a bar graph in a newspaper. Before you can compute a mean or median, you must first read the data correctly.
Idea
Most real data comes in one of three packages:
- Raw list. Just a string of values. Sort it, then apply mean / median / mode directly.
- Frequency table. Each value is paired with how often it appears.
- Grouped or pictorial data. Bar graphs, pictographs , read the heights / counts first.
Frequency tables. Say marks of students are listed as
| Marks () | Frequency () |
|---|---|
This actually means the list . The total count is .
To compute the mean, multiply each value by its frequency and divide by the total:
The mode is just the value with the largest frequency , here (frequency ). The median of sorted values is the average of the th and th values; both are and respectively, so median .
Reading bar graphs and pictographs. Treat each bar's height (or each picture's count scale) as a frequency. The rules for mean, median and mode are identical to those for a frequency table.
Watch the units. Heights might be in cm or m, prices in or paise. Convert everything to the same unit before summing.
Always sanity-check. A computed mean should lie between the smallest and the largest value. A median should match the "middle of the sorted list". If your answer is outside the data range, you have made an arithmetic slip.
Worked examples
Example 1. A pictograph shows pencils sold over days. Each symbol pencils. Days have symbols. Find the mean daily sales.
Convert: . Mean pencils per day.
Example 2. Frequency table of family sizes in a survey:
| Family size | Frequency |
|---|---|
Find the mean family size, mode and median.
. . Mean . Mode (highest frequency). Median: sorted values; th and th. Counting: positions – are ; – are ; – are . So th , th . Median .
Example 3. Cricket scores of a batter in innings: . Find mean and median. Comment.
Sort: . Mean . Median . They are close, so is a fair summary. The two ducks (zeros) lower both equally.
Example 4. Daily rainfall (mm) for a week: . Best central measure?
Mean mm. Median (4th sorted value) . Mode . Here the mean is the most useful , it captures the total rain spread over the week , even though most days had no rain.
Try it yourself
- From the table (value, frequency), find the mean.
- Same table , find median and mode.
- Daily steps walked in a week: . Mean? Median?
- A pictograph shows oranges sold over days; each symbol oranges. Counts: . Mean daily sales?
- Marks of students: . Sum check: mean should be between and . Compute and verify.
- Class survey: number of siblings each student has , . Make a frequency table. Find mean, median, mode.
- A bar graph shows monthly savings (in ): Jan , Feb , Mar , Apr , May . Mean monthly saving?
- From a frequency table , find and the mean.
Activity
Pick a sports section of a newspaper. Choose one team and one statistic (runs scored / goals / points). Collect the last games. Make a frequency table. Compute mean, median and mode. Which measure does the commentator usually quote? Why?