A dendrogram (or tree diagram) is a graph used to represent relationships in hierarchical clustering.
1
vote
1answer
47 views
Creating Dendrogram with ggdendrogram
I'm doing cluster analysis and creating a dendrogram. I used ggdendrogram package and want to use its output in ggplot2. I wonder how get the same x-labels as the leaf-labels. Thanks
D1 <- ...
1
vote
1answer
75 views
Change leaf color in plot.dendrogram like with plot.phylo of package ape
I am trying to plot the result of agglomerative clustering (UPGMA with Agnes) in the same 'style' as when plotting a tree using the package 'ape'. A simple example I include in the figure below
The ...
0
votes
1answer
43 views
Is it possible to layout this HTML table + customized dendrogram using MATLAB's publish command?
I would like to put together a more publication-worthy (and more easily produced) version of the diagram that I've hacked together below:
Basically, it's a two part illustration with an HTML table ...
6
votes
2answers
164 views
how to convert a data.frame to tree structure object such as dendrogram
I have a data.frame object. For a simple example:
> data.frame(x=c('A','A','B','B','B'), y=c('Ab','Ac','Ba', 'Ba','Bd'), z=c('Abb','Acc','Bad', 'Bae','Bdd'))
x y z
1 A Ab Abb
2 A Ac Acc
3 B ...
0
votes
1answer
125 views
Plot a tree in R given pairs of leaves and heights where they merge
I have a list of leaves in a tree and the height at which I'd like them to merge, i.e. the height of their most recent common ancestor. All leaves are assumed to be at height 0. A toy example might ...
2
votes
0answers
66 views
Does there already exist an R package that can print any list to the console as a tree (using ASCII symbols)?
I would find it convenient to be able to print out any list-mode R object using the same format as str.dendrogram. I wrote my own function that kind of works, but there's no point in duplicating ...
0
votes
1answer
160 views
Scipy dendrogram leaf label colours
Is it possible to assign colours to leaf labels of dendrogram plots from Scipy? I can't figure it out from the documentation. Here's what I've tried so far:
from scipy.spatial.distance import pdist, ...
0
votes
1answer
167 views
Drawing a D3.js cluster with the smallest possible height
Is there a way to dynamically set the height of a D3.js cluster so that it will have the smallest height possible (i.e. the smallest height before the edges of the dendrogram begin to get cut off or ...
2
votes
1answer
143 views
How to display separate disconnected trees in MATLAB when doing hierarchical clustering and producing dendrograms?
I am working with MATLAB, and I have an adjacency matrix:
mat =
0 1 0 0 0 0
1 0 0 0 1 0
0 0 0 1 0 0
0 0 1 0 0 1
0 ...
0
votes
0answers
22 views
stats as.dendrogram [duplicate]
Possible Duplicate:
R: code analysis tools
I am using the 'as.dendrogram' function from the 'stats' library to convert from an hclust object to a dendrogram with a dataset of size ~30000 ...
5
votes
2answers
703 views
horizontal dendrogram in R with labels
I am trying to draw a dendrogram from the hclust function output. I hope the dendrogram is horizontally arranged instead of the default, which can be obtain by (for example)
require(graphics)
hc ...
1
vote
2answers
216 views
reordering dendrograms on a clustergram in matlab
I have generated a clustergram based on a dataset of normalized values, but I want to attempt to reorder the samples along the y-axis. I haven't come across much information on how to go about doing ...
2
votes
0answers
193 views
Error in as.dendrogram
I am trying to make a dendrpgram using large data
I am using the stats, phyclust libraries,
distances <- phyclust.edist(Data[,],edist.model = .edist.model[3])
dataHClust <- hclust(distances, ...
0
votes
0answers
49 views
how to add/replace a subtree to a specific node in a dendrogram in R
I am trying to add/replace a subtree somewhere in a dendrogram. What happens is that inside the merging function, once we get to a node that has only two members, we lose the information to the rest ...
2
votes
1answer
251 views
How to label each node in a dendrogram based on label for the children using R
I have a dendrogram in R where each leaf has a value. I like to define each node's value by summing the value of its children. I am familiar with dendrapply, however I don't know how to access a ...
0
votes
0answers
73 views
R error while trying to extract labels of the dendrogram
I did hierarchical clustering on a genetic dataset (around 27000 genes). I saved the output as a dendrogram object and I need to extract the labels of this dendrogram. R gives me the following error:
...
9
votes
1answer
1k views
d3.js - how to automatically calculate arc lengths in radial dendrogram
I'm creating a modified version of Mike Bostock's hierarchical edge bundling diagram:
http://mbostock.github.com/d3/talk/20111116/bundle.html
but I want to make arcs which span certain groups of ...
0
votes
2answers
93 views
How to change the label size of an R plot
I`m making a cluster plot from my data. I have the entire plot finished but my label text is to large to be able to properly read the plot. Anyone any idea how to make labels smaller.
I am using the ...
0
votes
1answer
87 views
How to get children for each internal node in R?
For the dendrogram object how can I get children of the internal nodes? Ideally I would like to extract children with their labels.
thank you
1
vote
1answer
279 views
Adding labels to a dendrogram in ggplot using ggdendro in r
How can I add labels to a ggdendro plot? I realise from reading ?dendro_data that I am suppose to use the the call 'labels' but can't find an example of actual implementation. Could anybody please ...
0
votes
0answers
189 views
Make multiple ggplot have the same point colours in r
I need to show 3 ggplot scatterplots and one dendrogram on one page. How can I make the point colours the same in each scatter plot (i.e. I need the points for group two to be the same colour for all ...
0
votes
1answer
224 views
Calculate ordering of dendrogram leaves
I have five points and I need to create dendrogram from these. The function 'dendrogram' can be used to find the ordering of these points as shown below. However, I do not want to use dendrogram as it ...
0
votes
1answer
182 views
Python alternate way to find dendrogram
I have data of dimension 8000x100. I need to cluster these 8000 items. I am more interested in the ordering of these items. I could get the desired result from the above code for small data but for ...
0
votes
2answers
184 views
Select subsection of dendrogram using ggdendro
Is it possible to plot just a subsection of a histogram using ggdendro. For example, how could I plot just the left most cluster in the following example:
require(ggplot2)
hc <- ...
2
votes
1answer
173 views
python How to make a dendrogram from a dataframe
I am trying to find dendrogram a dataframe created using PANDAS package in python. An example data is shown below.
import numpy as np
from pandas import *
import matplotlib.pyplot as plt
from ...
1
vote
0answers
246 views
d3 - create dendrogram - influence of sub-branch depth
I wanted to create a dendrogram as presented in this example. Whereas my source code (fiddle) is almost exactly the same, the output is less than optimal.
I did changed the orientation (as described ...
4
votes
1answer
272 views
Duelling dendrograms in r (Placing dendrograms back to back in r)
Is there any fairly straight forward way of placing two dendrogram 'back to back' in r? The two dendrograms contain the same objects but are clustered in slightly different ways. I need to emphasise ...
0
votes
1answer
125 views
function to apply ID to nodes in a dendrogram
I would like to know if there is a function that applies an identifier to all nodes in a given dendrogram (binary tree).
So I want a function that after it on a given tree would do the following:
...
1
vote
1answer
244 views
Adding symbols to dendrogram leaves in R
I would like to add symbols to the leaves of a dendrogram reflecting variable for sites on a dendrogram similar to this:
require(graphics)
hc <- hclust(dist(USArrests[1:5,]), "ave")
plot(hc)
...
0
votes
1answer
105 views
Data to dendrogram and back
I have a feeling this is a very simply question but I cannot figure it out.
I have a small set of trajectories which I am trying to cluster using scipi hcluster.
I have been successful in this ...
4
votes
1answer
496 views
Displaying TraMineR (R) dendrograms in text/table format
I use the following R code to generate a dendrogram (see attached picture) with labels based on TraMineR sequences:
library(TraMineR)
library(cluster)
clusterward <- agnes(twitter.om, diss = TRUE, ...
8
votes
2answers
2k views
how to plot and annotate hierarchical clustering dendrograms in scipy/matplotlib
I'm using dendrogram from scipy to plot hierarchical clustering using matplotlib as follows:
mat = array([[1, 0.5, 0.9],
[0.5, 1, -0.5],
[0.9, -0.5, 1]])
plt.subplot(1,2,1)
...
2
votes
1answer
1k views
Generating a heatmap that depicts the clusters in a dataset using hierarchical clustering in R
I am trying to take my dataset which is made up of protein dna interaction, cluster the data and generate a heatmap that displays the resulting data such that the data looks clustered with the ...
2
votes
0answers
172 views
merging two dendrograms at a specific node
I would like to either:
remove a subtree and then merge a new subtree to the original dendrogram so that it is in the same position as the one removed.
or replace a subtree with another one.
I ...
0
votes
0answers
112 views
How do I realize a second y-axis in a heatmap in R
I'm trying to add a second y-axis to a heatmap.2 plot in R. So far I tried to use axis() but it didn't work. The obtained error message was (in German):
Fehler in match.arg(dendrogram) :
'arg' ...
0
votes
0answers
237 views
Lining up labelled dendrograms with a large matrix
Following on from the following questions:-
Reordering matrix elements to reflect column and row clustering in naiive python
plotting results of hierarchical clustering ontop of a matrix of data in ...
0
votes
0answers
100 views
How to color the leaf of the dendrogram according to their label (R)? [duplicate]
Possible Duplicate:
Change Dendrogram leaves
I have problem to color the leaf of the dendrogram according to their label (in this case, the Species of Iris). As example, I will use Iris ...
4
votes
1answer
457 views
cluster presentation dendrogram alternative in r
I know dendrograms are quite popular. However if there are quite large number of observations and classes it hard to follow. However sometime I feel that there should be better way to present the same ...
0
votes
1answer
647 views
How to adjust sizes of x-axis in dendrogram (R)?
I would like to adjust the x-axis in a dendrogram where all the labels are seen, for large data sets. As example, I use iris data here:
> iris.data=subset(iris,select=-Species)
> d ...
1
vote
1answer
422 views
algorithm for drawing dendrogram stepwise from clustered objects in a tree
I want to draw a dendrogram from objects which I have already clustered and saved in a (leave)tree. My Cluster object in Java can be represented by these pictures. Each leaves contains an object and ...
2
votes
1answer
210 views
Permutation vectors from the CLUSTERGRAM object (MATLAB)
I'm using the CLUSTERGRAM object from the Bioinformatics Toolbox (ver 3.7).
MATLAB version R2011a.
I'd like to get permutation vectors for row and columns for clustergram, as I can do with dendrogram ...
5
votes
1answer
815 views
How to put labels on the edges in the Dendrogram example?
Given a tree diagram like the Dendrogram example (source), how would one put labels on the edges? The Javascript code to draw the edges looks like the next lines:
var link = ...
2
votes
1answer
1k views
Colouring branches in a dendrogram in R
Dear resident R geniuses,
I would like to colour the branches of cluster in a dendrogram where the leaves are not labelled.
I found the following script here on Stackoverflow:
clusDendro <- ...
0
votes
1answer
158 views
X Position by Generation in Dendrogram
I am using the standard dendrogram layout in D3:
http://mbostock.github.com/d3/ex/cluster.html
But I would like the child nodes to be fixed to the position of their "generation", so for instance, ...
4
votes
1answer
1k views
Tree/dendrogram with elbow connectors in d3
I'm very new to d3.js (and SVG in general), and I want to do something simple: a tree/dendrogram with angled connectors.
I have cannibalised the d3 example from ...
1
vote
0answers
184 views
Plotting dendrogram in Scipy error for large dataset
I am using Scipy for hierarchial clustering. I do manage to get flat clusters on a threshold using fcluster. But I need to visualize the dendrogram formed. When I use the dendrogram method, it works ...
2
votes
2answers
1k views
Exporting dendrogram as table in R
I would like to export an hclust-dendrogram from R into a data table in order to subsequently import it into another ("home-made") software. str(unclass(fit)) provides a text overview for the ...
3
votes
2answers
472 views
Making simple phylogenetic dendrogram (tree) from a list of species
I want to make a simple phylogenetic tree for a marine biology course as an educative example. I have a list of species with taxonomic rank:
Group <- ...
1
vote
1answer
484 views
scipy linkage format
i have written my own clustering routine and would like to produce a dendrogram. The easiest way to do this would be to use scipy dendrogram function. however this requires the input to be in the same ...
20
votes
1answer
2k views
How can I produce plots like this?
I have come across this kind of a plot that performs hierarchical clustering over a given set of timeseries data. Can someone tell me how to draw such plots?
I am open to implementations in R or ...

