Range: The simplest measure of spread, calculated as the difference between the maximum and minimum values in a dataset. It represents the total span of the observations.
Quartiles: Values that divide a sorted dataset into four equal parts. The Lower Quartile () marks the 25th percentile, the Median () marks the 50th percentile, and the Upper Quartile () marks the 75th percentile.
Interquartile Range (IQR): The difference between the upper and lower quartiles (). It measures the spread of the central 50% of the data, effectively ignoring the tails of the distribution.
| Feature | Range | Interquartile Range (IQR) |
|---|---|---|
| Data Used | Only the two extreme values | The middle 50% of the data |
| Outlier Sensitivity | Highly sensitive; can be misleading | Robust; ignores extreme values |
| Purpose | Shows the total span of data | Shows the consistency of the core data |
| Calculation |
When to use Range: Use when you need a quick, simple overview of the total boundaries of the data and there are no known outliers.
When to use IQR: Use when the dataset contains outliers or is skewed, as it provides a more reliable measure of the 'typical' spread.
Confusing Index with Value: Students often find the position of a quartile (e.g., the 5th item) and write '5' as the quartile value instead of the actual data value at that position.
Handling Odd vs. Even : When finding quartiles for an odd number of data points, the median itself is typically excluded from both the lower and upper halves when calculating and .
Negative Numbers: When calculating the range with negative numbers, remember that subtracting a negative is equivalent to adding (e.g., ).