1. Overview

In Data Science, one of the first phases of discovery is determining what is in the data. The less we know about the data, the more we need algorithms that will help us discover more about it. If we graph our data and can see well-defined clusters, then we’ve got algorithms where we simply supply the numbers of clusters ourselves.

But, if we have a large number of parameters or less well-defined clusters, it’s more difficult to use an algorithm that requires a number of clusters up-front. Luckily, there are a number of algorithms that don’t require that we have that up-front knowledge. In this tutorial, we’ll discuss some of those algorithms.

2. Clustering Concepts

Clustering is similar to classification. To classify, we need to know into what categories we want to put the data. But, we can use clustering when we’re not sure what those classifications might be. In that case, it’s up to the algorithm to find the patterns and to create the clusters. Different algorithms will produce different clusters. So, it’s not uncommon to use more than one algorithm and find different patterns, or clusters, from each.

We use the term cluster because we imagine doing this on a graph, where we can see the points clustered together. What is a cluster? It’s a group of points that are close to each other:

2D clustering plot
Plot Example

But how do we determine that they are “close”? We measure the distances between them.

3. Calculating Distances or Similarities

Simply put, there are four methods we can use for deciding “how close” a cluster and a nearby point might be:

  • In the first, we look at the closest point in the cluster to the outside point.
  • In the second, we look at the farthest point in the cluster to the outside point.
  • The third method asks us to determine the average distances between all the points in the cluster and the outside point.
  • The last method calculates the centroid or center of mass of the cluster and measures that imaginary point’s distance to the outside point.
How are distances between points measured? By finding the closest point, the farthest point, the average distance or the centroid of a cluster and measuring its distance to a nearby point.
Different methods of determining “how close”

Once we determine what distance we want to measure, how do we measure it? In basic geometry, we learned the Euclidean Distance Formula:

\sqrt{x^2 - y^2}

Euclidean distance depiction.
From: Machine Learning A-Z: Hands-On Python and R in Data Science by Super Data Science

And this appears to be the most common method used, but there are a number of other options.

Having decided how to define the distance and what formula we’ll use, we’re ready to select a clustering algorithm.

4. Algorithms

There are a number of ways of achieving clustering:

  • Compactness takes a representative point and its parameters. The more similar the other points in the cluster are, the more compact the cluster is.
  • Connectivity works on the idea that objects that are nearby are more related than objects that are farther away.
  • Linearity is about the kinds of functions used, linear or non-linear, and
  • Hard vs. soft – In hard clustering algorithms, the data is assigned to only one cluster. In soft clustering, the data may be assigned to more than one cluster.

And there are a number of ways of classifying clustering algorithms: hierarchical vs. partition vs. model-based, centroid vs. distribution vs. connectivity vs. density, etc. Each algorithm determines whether one data point is more “like” one data point than it is “like” another data point. But how that likeness is determined differs by the algorithm implemented. Let’s do a quick survey of some of the algorithms available, focusing on those that do not require that we define the number of clusters up-front.

4.1. Hierarchical Clustering

Hierarchical clustering is a hierarchical algorithm that uses connectivity. There are two implementations: agglomerative and divisive.

In agglomerative clustering, we make each point a single-point cluster. We then take the two closest points and make them one cluster. We repeat this process until there is only one cluster.

The divisive method starts with one cluster, then splits that cluster using a flat clustering algorithm. We repeat the process until there is only one element per cluster.

The algorithm retains a memory of how the clusters were formed or divided. This information is used to create a dendrogram. The dendrogram is used to set the thresholds for determining how many clusters should be created.

Hierarchical clustering dendogram.
Hierarchical Clustering Dendrogram

We find the optimal number of clusters by finding the longest unbroken line in the dendrogram, creating a vertical line at that point, and counting the number of crossed lines. In the example above, we find 2 clusters.

4.2. DBSCAN (Density-Based Spatial Clustering of Applications with Noise)

DBSCAN is a density-based clustering algorithm. It groups together points within a distance measurement using a minimum-point-count threshold.

EPS (epsilon) is the maximum radius of the neighborhood. It defines how far apart the points can be to be considered part of the cluster. We don’t want this value to be too small since it will be difficult to find the minimum number of points in the given region. If the value is too large, a majority of the objects will be in one cluster.

The MinPts is the minimum number of points to form a dense region. We can calculate this value from the number of dimensions in the dataset. The rule of thumb is:

minPts \geq D + 1

The minimum value allowed is 3. But for larger datasets or datasets with a lot of noise, a larger value is better.

DBSCAN plot, showing clustering of data from the mtcars dataset.

4.3. Mean-Shift

Mean-shift is a centroid-based algorithm. It works by updating candidates for centroids to be the mean of the points within a given region. That is, it’s looking for the densest regions and finding their centroids.

To implement mean-shift, we initialize a random seed and a window (W). Then, we calculate the center of gravity (the mean) of W. We shift the search window to the mean, then repeat the calculation until convergence is achieved:

Example of mean shift clustering.

Final mean shift clustering, with centroids and clusters defined.

4.4. Spectral Clustering

In spectral clustering, data points are treated as nodes on a graph. The nodes are mapped to low-dimensional space that can be easily segregated to form clusters. Unlike other algorithms, which assume a regular pattern, no assumption is made about the shape or form of the clusters in spectral clustering.

In order to find the clusters, we first create a graph. This graph can be represented by an adjacency matrix, where the row and column indices represent the nodes, and the entries represent the presence or absence of an edge between the nodes. We then project this data onto a lower-dimensional space and create the clusters:

SpectralClustering
Spectral Clustering of a Wine Dataset

5. Conclusion

In this article, we have shown how clustering algorithms are defined and differentiated.

We’ve shown different examples of the types of algorithms that can be used when we don’t know how many clusters there will be. Once we determine how many clusters there will be, we can use the K-Means Clustering algorithm to gain more insight into our data.

Clustering is just one exploratory algorithm for data analysis. And data exploration is just one step in the data science process. For insight into a tool that helps with the entire process, check out our guide to Spark MLlib.  

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.