Recursive Partitional Clustering Algorithm

From GM-RKB
(Redirected from Recursive Partitioning)
Jump to navigation Jump to search

A Recursive Partitional Clustering Algorithm is a hierarchical clustering algorithm that is a top-down algorithm which partitions all of the data records immediately and then iteratively adjust them.



References

2009


  • (Wikipedia, 2009) ⇒ http://en.wikipedia.org/wiki/Cluster_analysis#Hierarchical_clustering
    • Hierarchical clustering builds (agglomerative), or breaks up (divisive), a hierarchy of clusters. The traditional representation of this hierarchy is a tree (called a dendrogram), with individual elements at one end and a single cluster containing every element at the other. …

      … Cutting the tree at a given height will give a clustering at a selected precision. In the following example, cutting after the second row will yield clusters {a} {b c} {d e} {f}. Cutting after the third row will yield clusters {a} {b c} {d e f}, which is a coarser clustering, with a smaller number of larger clusters.



2003