How can I extract a colormap from a dendrogram?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have created a dendrogram and am happy with the colors it has selected by default. I want to create other plots using the same colormap to facilitate comparison. How do I extract the colormap from the dendrogram I have created?
0 件のコメント
採用された回答
Jing Ci Neo
2020 年 11 月 12 日
編集済み: Jing Ci Neo
2020 年 11 月 24 日
Hello Rebecca,
I have a brute force solution for a few clusters. It looks like 'dendrogram' use the hsv colormap, and clusters with only 1 member are set to be black. The rest of the clusters are colored from
So what you can do is:
% Clustering
nClus = 10; % Let's say you have 10 clusters
clustTreeEuc = linkage(eucD,'average'); % By average euclidean distance
color = clustTreeEuc(end-nClus+2,3)-eps; % Calc. threshold based on nClus
[H,T,perm] = dendrogram(clustTreeEuc,0,'Orientation','right','ColorThreshold',...
color,'labels','myDataNames'); % Plot dendrogram
hidx = cluster(clustTreeEuc,'criterion','distance',...
'MaxClust',nClus); % idx of data in each clus
% After you plot the dendrogram, find out what color each cluster is
% You can use histcounts(hidx) to help you
% By the order of the rainbow (r y g b ...) assign each cluster a new number
% For e.g. clus 1 is green, new no. is 3. Clus 2 is red, new no. is 1 etc.
% Black is the last color (clusters with 1 member)
cidx = [4 1 7 3 8 2 6 5 9 9]; % Example with two 1 member clusters (so 9 colors)
% Colors
cmap = hsv(max(cidx)-1);
cmap(end+1,:) = [0 0 0];
cmap(cidx(hidx(i)),:) % This gives color of ith data
Hope it helps! If anyone finds a better method please let me know, thanks!
その他の回答 (1 件)
Rishik Ramena
2020 年 10 月 7 日
編集済み: Rishik Ramena
2020 年 10 月 7 日
You could use the ColorThreshold argument to specify the number of colors to be used in the dendrogram. This would then limit the use of newer colors in the different plots you seek to compare. You can also set the colors of the lines individually using the handles returned by the dendrogram function. Check here for examples and implementation.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Orange についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!