Mean, median, mode, range — raw data
Mean: sum/count. Median: middle when sorted. Mode: most common. Range: max - min.
Mean. Add up all the values, divide by how many there are.
Median. Sort the values from low to high. The median is the middle.
- ODD: median is the -th value.
- EVEN: median is the average of the -th and -th values.
Mode. The value(s) that occur most often. A data set can be:
- Unimodal: one mode.
- Bimodal: two values tied for highest frequency.
- No mode: every value occurs the same number of times.
Range. Maximum minus minimum.
Worked. Data: .
- Sort: .
- , median = th value = .
- Mean: .
- Mode: (appears twice).
- Range: .
- Mean = sum / count.
- Median: sort, find the middle.
- Mode: most common.
- Range: max min.
- even: median is the average of the two middles.