Open In App

CLIQUE Algorithm in Data Mining

CLIQUE is a density-based and grid-based subspace clustering algorithm. So let’s first take a look at what is a grid and density-based clustering technique. 

 CLIQUE Algorithm:

CLIQUE Algorithm uses density and grid-based technique i.e subspace clustering algorithm and finds out the cluster by taking density threshold and a number of grids as input parameters. It is specially designed to handle datasets with a large number of dimensions.CLIQUE Algorithm is very scalable with respect to the value of the records, and a number of dimensions in the dataset because it is grid-based and uses the Apriori Property effectively. APRIORI APPROACH ?.



Apriori Approach Stated that If an X dimensional unit is dense then all its projections in X-1 dimensional space are also dense.

This means that dense regions in a given subspace must produce dense regions when projected to a low-dimensional subspace. CLIQUE restricts its search for high-dimensional dense cells to the intersection of dense cells in the subspace because CLIQUE uses apriori properties.



Working of CLIQUE Algorithm:

The CLIQUE algorithm first divides the data space into grids. It is done by dividing each dimension into equal intervals called units. After that, it identifies dense units. A unit is dense if the data points in this are exceeding the threshold value.

Once the algorithm finds dense cells along one dimension, the algorithm tries to find dense cells along two dimensions, and it works until all dense cells along the entire dimension are found. 

After finding all dense cells in all dimensions, the algorithm proceeds to find the largest set (“cluster”) of connected dense cells. Finally, the CLIQUE algorithm generates a minimal description of the cluster. Clusters are then generated from all dense subspaces using the apriori approach.

Advantage: 

Disadvantage:

Article Tags :