agglomerative Hierarchical clustering - interpreting results
3 次查看(过去 30 天)
显示 更早的评论
I have some data where I want to do some agglomerative hierarchical clustering
My Data looks like this
12001,0.2,0.32,0.9,....
12002,0.22,0.3,0.5,…
where the first value in each row is an unique ID.
In order to to the clustering I delete the first column
X = csvread('yourfile.csv');
X(:,1) = []; % delete first column
Aftere this I am doing pdist, linkage and cutoff the cluster. Not sure if I am doing this the right way, but how do I know now which unique ID is in which cluster or how to I even interpret my cluster now?
Any help? Thanks
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!