Assigning a new data point to a cluster in hierarchical clustering

7 vues (au cours des 30 derniers jours)
Sepp
Sepp le 3 Mai 2016
Commenté : Sepp le 4 Mai 2016
Hello
I have clustered my data X with hierarchical clustering in the following way:
Y = pdist(X);
Z = linkage(Y);
T = cluster(Z,'maxclust',2);
How can I determine to which cluster a new data point (not in X) should be assigned to? For k-means one can just assign the data point to the cluster with the nearest centroid but for hierarchical clustering I don't see how to do it.

Réponse acceptée

MHN
MHN le 4 Mai 2016
If you know your maxclust is 2, then just use 2-means. Hierarchical clustering and linkage will give you an insight about the number of natural clusters in your data. When you found that k' (e.g. using 'cutoff') based on hierarchical clustering, you can use k'-mean.
  1 commentaire
Sepp
Sepp le 4 Mai 2016
Thanks for your answer. I don't know that maxclust has to be 2, it was just an example. How can I find out which number of clusters my data naturally has with hierarchical clustering?

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by