0 votes
in Clustering - The Data Ensemble by
Assume you want to cluster 7 observations into 3 clusters using the K-Means clustering algorithm. After first iteration, clusters C1, C2, C3 have following observations:

C1: {(2,2), (4,4), (6,6)}

C2: {(0,4), (4,0)}

C3: {(5,5), (9,9)}

What will be the Manhattan distance for observation (9, 9) from cluster centroid C1 in the second iteration?

Select the correct answer from below options:

A. 10

B. 5*sqrt(2)

C. 13*sqrt(2)

D. None of these

1 Answer

0 votes
by

Answer: (A)

Manhattan distance between centroid C1, i.e., (4, 4) and (9, 9) = (9-4) + (9-4) = 10

Related questions

0 votes
asked Mar 19, 2023 in Clustering - The Data Ensemble by Robin
+1 vote
asked Feb 3, 2020 in Clustering - The Data Ensemble by MBarbieri
...