Tagged Questions
The hclust tag has no wiki summary.
7
votes
1answer
1k views
How do I color edges or draw rects correctly in an R dendrogram?
I generated this dendrogram using R's hclust(), as.dendrogram() and plot.dendrogram() functions.
I used the dendrapply() function and a local function to color leaves, which is working fine.
I have ...
2
votes
1answer
377 views
setting distance matrix and clustering methods in heatmap.2
heatmap.2 defaults to dist for calculating the distance matrix and hclust for clustering.
Does anyone now how I can set dist to use the euclidean method and hclust to use the centroid method?
I ...
2
votes
1answer
284 views
Clustering list for hclust function
Using plot(hclust(dist(x))) method, I was able to draw a cluster tree map. It works. Yet I would like to get a list of all clusters, not a tree diagram, because I have huge amount of data (like 150K ...
2
votes
2answers
586 views
Consensus tree or “bootstrap proportions” from multiple hclust objects
I have a list of hclust objects resulting from slight variations in one variable (for calculating the distance matrix)
now I would like to make a consensus tree from this list.
Is there a generic ...