Skip to content

Instantly share code, notes, and snippets.

@BastinRobin
Created May 19, 2021 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BastinRobin/60c1f27894dcca2d38b7142a5abaa38b to your computer and use it in GitHub Desktop.
Save BastinRobin/60c1f27894dcca2d38b7142a5abaa38b to your computer and use it in GitHub Desktop.
Hierarichal Clustering

Implementation of Hierarichal Clustering (Agglomeration Cluster)

Hierarchical clustering algorithms group similar objects into groups called clusters. There are two types of hierarchical clustering algorithms:

  • Agglomerative — Bottom up approach. Start with many small clusters and merge them together to create bigger clusters.
  • Divisive — Top down approach. Start with a single cluster than break it up into smaller clusters.

Create a Hierarical clustering and experiment the following tutorial

Ref: Details

Download Dataset

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment