Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Linkages | Core Concepts
Cluster Analysis with Python

Linkages

メニューを表示するにはスワイプしてください

Linkage methods decide how to measure distance between clusters when building clusters step-by-step. Different linkages create different cluster shapes.

Single Linkage
expand arrow
  • Uses the shortest distance between points in two clusters;
  • Links clusters when any points get close;
  • Creates long, chaining clusters;
  • Good for irregular shapes;
  • Sensitive to noise.
Complete Linkage
expand arrow
  • Uses the longest distance between points in two clusters;
  • Links clusters only when all points are relatively close;
  • Creates compact, spherical clusters;
  • Less chaining;
  • More robust to noise.
Average Linkage
expand arrow
  • Uses the average distance between all pairs of points from two clusters;
  • A compromise between single and complete linkage;
  • Often a good balance.
Centroid Linkage
expand arrow
  • Uses the distance between the centroids of two clusters;
  • Centroid is the mean position of all points in the cluster;
  • Can sometimes cause inversions (clusters getting closer as they grow);
  • Good for geometrically meaningful clustering.
question mark

Which linkage method is known for creating long, chaining clusters and is most sensitive to noise?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 2.  5

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 2.  5
some-alt