This week, our lab assignment centered on implementing and assessing a variety of data classification methods. This involves taking a data set - in this particular case the percentage of population in each US census tract in Escambia County, Florida that was reported as black in the 2000 census - and determining the best way to divide the range of data values into categories that can be symbolized on a map. Four different classifications were used.
- Equal Interval classification simply divides the entire range of values from minimum to maximum into identically sized sub-ranges without regard to how the data is clustered along the number line.
- Standard Deviation classification bases its classes on the standard deviation from the mean value of the data.
- Natural Breaks classification uses an algorithm to find an 'ideal' set of ranges that respects how the data is aggregated along the number line.
- Quantile classification creates sub-ranges that each contain the same number of values in each, or at least as close as possible based on how well the number of sub-ranges factors into the number of values. In this case, number of classifications was five, so it is referred to on the map as Quintile.
Two maps were created. The first displays all four of these data classification methods in separate maps for comparison purposes. The second map only features one map that uses the best option for classifying the particular data set being inspected. In this case, the
Natural Breaks method was chosen. The data values supplied from the census data showed a heavy positive skew - a majority of values were clustered in the lower quarter of the possible range of values, with a long tail extending to the left. Such a heavy skew indicates that this data does not conform to a normal (or gaussian) distribution. That makes the
Standard Deviation classification a poor fit for the data. The skewing also makes the
Equal Interval classification a poor choice. Note in the map below that most of the census tracts have the same classification on the equal interval map. The
Natural Breaks and
Quantile methods are both suitable for this data, but the latter results in the lower ranges being extremely narrow. That is potentially misleading to a map user who doesn't look closely at the legend. The
Natural Breaks classification does have narrow ranges on the left side of the number line as well, but not to the same extremes.

Four Classification Methods Compared

Population Percentage using Natural Breaks classification.