フィルターのクリア

Using different distances with evalclusters

11 ビュー (過去 30 日間)
Manash Sahoo
Manash Sahoo 2021 年 5 月 5 日
回答済み: Shraddha Jain 2021 年 6 月 22 日
Hey everyone!
I would like to use the evalclusters function with linkage method. However, the doc for the function states that specifying 'linkage' in input in evalclusters will use agglorometive clustering with ward's distance. However, I would like to use complete distance as opposed to ward's. I've tried this to no avail:
f = @(X)linkage(X,'complete');
eva = evalclusters(Data,f,'klist',[1:6]);
All this does is return an empty Evaluation object with NaNs as the outputs.
How would I go about specifying distance in these functions?
Any help would be great. Thanks!

採用された回答

Shraddha Jain
Shraddha Jain 2021 年 6 月 22 日
Hi Manash,
The second input argument clust in the function evalclusters refers to the clustering algorithm that is used.
When clust is specified as 'linkage', it means that clusterdata agglomerative clustering algorithm will be used to cluster the given input data x with the algorithm for computing the distance between clusters'Linkage' pre-defined to 'ward'.
This 'Linkage'algorithm could certainly be changed to something other than 'ward' by speifying it in a function handle using clusterdata and passing that as the clust argument in evalclusters,
f = @(x,k) clusterdata(x,'linkage','complete','maxclust',k);
eva = evalclusters(Data,f,'klist',[1:6]);
The reason that Ward Linkage is used as default in clusterdata as it the minimum variance method, therefore it minimizes the total within-cluster variance.
Hope this helps!

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMaterial Sciences についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by