Computer Science, asked by mobilessearch2234, 1 year ago

Which is one of the hierarchical clustering approaches?

Answers

Answered by raaj25
0
In data mining and statistics, hierarchical clustering (also called hierarchical cluster analysis or HCA) is a method of cluster analysis which seeks to build a hierarchy of clusters. Strategies for hierarchical clustering generally fall into two types:[1]

Agglomerative: This is a "bottom up" approach: each observation starts in its own cluster, and pairs of clusters are merged as one moves up the hierarchy.

Divisive: This is a "top down" approach: all observations start in one cluster, and splits are performed recursively as one moves down the hierarchy.

In general, the merges and splits are determined in a greedy manner. The results of hierarchical clustering are usually presented in a dendrogram.

In the standard algorithm for hierarchical agglomerative clustering (HAC) has a time complexity of {\displaystyle {\mathcal {O}}(n^{3})} and requires {\displaystyle {\mathcal {O}}(n^{2})}memory, which makes it too slow for even medium data sets. However, for some special cases, optimal efficient agglomerative methods (of complexity {\displaystyle {\mathcal {O}}(n^{2})}) are known: SLINK[2] for single-linkage and CLINK[3] for complete-linkage clustering. With a heap the runtime of the general case can be reduced to {\displaystyle {\mathcal {O}}(n^{2}\log n)} at the cost of further increasing the memory requirements. In many programming languages, the memory overheads of this approach are too large to make it practically usable.

Except for the special case of single-linkage, none of the algorithms (except exhaustive search in {\displaystyle {\mathcal {O}}(2^{n})}) can guaranteed to find the optimum solution.

Divisive clustering with an exhaustive search is {\displaystyle {\mathcal {O}}(2^{n})}, but it is common to use faster heuristics to choose splits, such as k-means

I hope it help you..
Please mark me brainlist
Answered by Sadhiti
12

Answer:

Answer ♡

  • Clustering (also called hierarchical cluster analysis or HCA) is a method of cluster analysis which seeks to build a hierarchy of clusters. Strategies for hierarchical clustering generally fall into two types..
Similar questions