Tagged Questions
The dendrogram 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 ...
5
votes
1answer
96 views
Labelling ggdendro leaves in multiple colors
I have a situation in which i am plotting a dendrogram with data points that come with class labels.
I wish to see that agglomerative clustering groups those with the same label together. Color ...
5
votes
1answer
627 views
Generating dendrograms from genealogy data in R
Is there any way to generate a dendrogram where each level of the graph represents a generation and only sons of the same father are connected at each level?
I'm attempting to use R's hclust and plot ...
4
votes
3answers
549 views
How do I create a radial cluster like the following code-example in Python?
I've found several examples on how to create these exact hierarchies (at least I believe they are) like the following here stackoverflow.com/questions/2982929/ which work great, and almost perform ...
4
votes
4answers
1k views
How do you compare the “similarity” between two dendrograms (in R)?
I have two dendrograms which I wish to compare to each other in order to find out how "similar" they are. But I don't know of any method to do so (let alone a code to implement it, say, in R).
Any ...
3
votes
2answers
294 views
How to plot dendrograms with large datasets?
I am using ape (Analysis of Phylogenetics and Evolution) package in R that has dendrogram drawing functionality. I use following commands to read the data in Newick format, and draw a dendrogram using ...
3
votes
1answer
175 views
How do I label the terminal nodes of a cut dendrogram?
I used the following code to cut the dendrogram at a particular height.The problem I'm having is that when I cut a dendrogram, I can't figure out how to add labels to the nodes.How can I cut a ...
3
votes
2answers
921 views
Dendrogram generated by scipy-cluster does not show
I am using scipy-cluster to generate a hierarchical clustering on some data. As a final step of the application, I call the dendrogram function to plot the clustering. I am running on Mac OS X Snow ...
3
votes
1answer
3k views
How do I manually create a dendrogram (or “hclust”) object ? (in R)
I have a dendrogram given to me as images. Since it is not very large, I can construct it "by hand" into an R object.
So my question is how do I manually create a dendrogram (or "hclust") object, ...
2
votes
1answer
100 views
generating high-resolution dendrogram plot in R
I am trying to generate a high-resolution dendrogram in R.
The difficulty is that there are more than 200 leaf nodes, and each node is identified by a string. I would like to ensure that each of ...
2
votes
3answers
316 views
Draw dendrogram in python manually
I have implemented an algorithm to solve the problem of clustering in a graph. I used the python library "python-graph" to represent the graph. Now, at each step of my computation (the algorithm is ...
2
votes
2answers
130 views
How does one modify the axes in MATLAB's phylogenetic tree tool?
I want to display pretty dendrograms for some agglomerative clusters I am generating in Java. I write the clusters out to a file in Newick format. Then, I can get a pretty picture that is almost ...
2
votes
2answers
584 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 ...
1
vote
1answer
124 views
Cluster analysis with LAMP
I am looking for a way to do some data cluster analysis. This is way out of my league but i know it can be done. I am looking for ways to cluster the data that i have and present it in a visual way. ...
1
vote
2answers
451 views
How can I create a dendrogram in R using pre-clustered data created elsewhere?
I have clustering code written in Java, from which I can create a nested tree structure, e.g. the following shows a tiny piece of the tree where the two "isRetired" objects were clustered in the first ...
1
vote
1answer
401 views
Dendrogram generated by scipy-cluster customisation
This is a follow up to Dendrogram generated by scipy-cluster does not show.
from matplotlib.pyplot import show
from scipy.spatial.distance import pdist
from scipy.cluster.hierarchy import linkage, ...
1
vote
2answers
672 views
Library or any API for plotting dendrograms
I have an MySQL database which contains some data,it interacts with JSP pages,the thing is that I have to plot dendrograms from various files stored in the database.
I found some java API for this ...
1
vote
3answers
1k views
What component should I use to draw a dendrogram in Java?
Dendrogram is not a regular diagram. Should I use any component from javax.swing.* library, or just draw it with java.awt.Graphics?
0
votes
1answer
53 views
extract cluster information from the generated dendrogram
In the generated dendrogram graph, the column marks the distance cutoff. Is there a way to get the cluster information for each of these distance cutoffs. In specific, how to do that in Matlab or in ...
0
votes
1answer
25 views
Regarding the returned vector of dendrogram function
I am drawing dendrogram using matlab function like the following
[h1,t1,perm1] = dendrogram(z,3);
According to MATLAB document, the returned h1 is a vector of handles to the lines in the ...
0
votes
1answer
181 views
How to convert a tree to a dendrogram in R?
How I can convert a tree (which is the output of my java program) to a dendrogram in R?
Currently, I am converting the tree to the Newick format, using the suggestion given here: converting a Tree to ...
0
votes
0answers
97 views
Dendrogram in R
I did hierarchial clustering using hclust function in R and I got a dendrogram. But my problem is , some clusters of my dendrogram are in negative position( at a height -20). How can I resolve this ...
0
votes
1answer
431 views
Heatmap of Microarray Data using Pearson Distance
I have been trying to generate a heatmap in R for some microarray data and for the most part have been successful in producing one, based on online instruction, but it does not do exactly what I ...
0
votes
1answer
260 views
How do I create a non-ascii dendrogram with Python?
Trying to create a dendrogram with this found code block, and it works up until the call
r('mt_dist <- dist(t(mt))')
then spouts the error ~
RPy_RException: Error in dist(t(mt)) : (list) object ...
0
votes
2answers
753 views
Embedding dendrogram in Java
I'm looking for a library capable of drawing dendrograms of data in Java (not calculating them, I can do it by myself).. do you have any clues? Already tried to search it over Google but haven't found ...
-1
votes
2answers
204 views
Heatmap function in R dendrogram failure
For the life of me I cannot understand why this method is failing, I would really appreciate an additional set of eyes here:
heatmap.2(TEST,trace="none",density="none",scale="row",
...