SUBCLU: Difference between revisions
Slowmo0815 (talk | contribs) |
Slowmo0815 (talk | contribs) |
||
Line 4: | Line 4: | ||
SUBCLU uses a [[monotonicity]] criteria: if a cluster is found in a subspace <math>S</math>, then each subspace <math>T \subseteq S</math> also contains a cluster. However, a cluster <math>C \subseteq DB</math> in subspace <math>S</math> is not necessarily a cluster in <math>T \subseteq S</math>, since clusters are required to be maximal, and more objects might be contained in the cluster in <math>T</math> that contains <math>C</math>. However, a [[DBSCAN|density-connected set]] in a subspace <math>S</math> is also a density-connected set in <math>T \subseteq S</math>. |
SUBCLU uses a [[monotonicity]] criteria: if a cluster is found in a subspace <math>S</math>, then each subspace <math>T \subseteq S</math> also contains a cluster. However, a cluster <math>C \subseteq DB</math> in subspace <math>S</math> is not necessarily a cluster in <math>T \subseteq S</math>, since clusters are required to be maximal, and more objects might be contained in the cluster in <math>T</math> that contains <math>C</math>. However, a [[DBSCAN|density-connected set]] in a subspace <math>S</math> is also a density-connected set in <math>T \subseteq S</math>. |
||
This |
This ''downward-closure property'' utilized by SUBCLU in a way similar to the [[Apriori algorithm]]: first, all 1-dimensional subspaces are clustered. All clusters in a higher-dimensional subspace will be subsets of the clusters detected in this first clustering. SUBCLU hence recursively produces <math>k+1</math>-dimensional candidate subspaces by combining <math>k</math>-dimensional subspaces with clusters sharing <math>k-1</math> attributes. After pruning irrelevant candidates, [[DBSCAN]] is applied to the candidate subspace to find out if it still contains clusters. If it does, the candidate subspace is used for the next combination of subspaces. |
||
==References== |
==References== |
Revision as of 16:01, 28 April 2009
SUBCLU is an algorithm for clustering high-dimensional data by Karin Kailing, Hans-Peter Kriegel and Peer Kröger[1]. It is a subspace clustering algorithm that builds on the density-based clustering algorithm DBSCAN. SUBCLU can find clusters in axis-parallel subspaces, and uses a bottom-up, greedy strategy to remain efficient.
Approach
SUBCLU uses a monotonicity criteria: if a cluster is found in a subspace , then each subspace also contains a cluster. However, a cluster in subspace is not necessarily a cluster in , since clusters are required to be maximal, and more objects might be contained in the cluster in that contains . However, a density-connected set in a subspace is also a density-connected set in .
This downward-closure property utilized by SUBCLU in a way similar to the Apriori algorithm: first, all 1-dimensional subspaces are clustered. All clusters in a higher-dimensional subspace will be subsets of the clusters detected in this first clustering. SUBCLU hence recursively produces -dimensional candidate subspaces by combining -dimensional subspaces with clusters sharing attributes. After pruning irrelevant candidates, DBSCAN is applied to the candidate subspace to find out if it still contains clusters. If it does, the candidate subspace is used for the next combination of subspaces.
References
- ^ Karin Kailing, Hans-Peter Kriegel and Peer Kröger. Density-Connected Subspace Clustering for High-Dimensional Data. In: Proc. SIAM Int. Conf. on Data Mining (SDM'04), pp. 246-257, 2004.