Cluster Analysis Flashcards

1
Q

Define a dissimilarity matrix

A

dij = dji
dij ≥ 0
dii = 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Give the squared euclidean distance

A

dij^2 = sum(k=1 to p) (xik - xjk)^2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define a similarity matrix

A

sij = sji

sij ≤ sii

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you transform between a dissimilarity matrix and a similarity matrix?

A

dij = (sii + sjj - 2sij)^(1/2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When is a group homogenous?

A

Members are close to each other, and distant from other groups

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you perform single linkage cluster analysis?

A
  1. choose smallest distance between any two points
  2. form this cluster
  3. select minimum distance from this cluster to all other points
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you perform complete linkage cluster analysis?

A
  1. choose smallest distance between any two points
  2. form this cluster
  3. select maximum distance from this cluster to all other points
How well did you know this?
1
Not at all
2
3
4
5
Perfectly