Measures of Center describe the typical value in a dataset.
| Measure | Definition | Example: {2,4,4,6,9} |
|---|---|---|
| Mean | Sum divided by count | (2+4+4+6+9)=25 / 5 = 5 |
| Median | Middle value when data is sorted | Sorted: 2,4,4,6,9 — Middle = 4 |
| Mode | Most frequently occurring value | 4 appears twice — Mode = 4 |
| Range | Maximum minus minimum | 9 - 2 = 7 |
When dataset has even count: Median = average of the two middle values.
Outliers affect the mean significantly but not the median.