[R] Dendrogram orientation

2009-08-26 Thread Jopi Harri
Besides the facility to plot dendrograms vertically and horizontally, is there any chance to plot them mirrored, i.e., instead of shaping them like ,-, and E have them like '-' and 3 (I hope that my minimalistic visualization is legible)? If there is, how might that be accomplished (other than mir

Re: [R] Dendrogram orientation

2008-03-31 Thread Gabor Grothendieck
Try: plot(as.dendrogram(dd1), horiz = TRUE, nodePar = list(lab.cex = .4)) On Thu, Mar 27, 2008 at 1:08 PM, Lassana TOURE <[EMAIL PROTECTED]> wrote: > I am using the two functions hclust and plot to draw a dendrogram. The > result is a vertical dendrogram , but I prefer a horizontal one. > > Need

Re: [R] Dendrogram orientation

2008-03-31 Thread Henric Nilsson (Public)
Lassana TOURE wrote: > I am using the two functions hclust and plot to draw a dendrogram. The > result is a vertical dendrogram , but I prefer a horizontal one. > > Need help. Take a look at `?dendrogram'. HTH, Henric > > This is my script: > > > > dd1=hclust(d1, method="ward") > > pl

[R] Dendrogram orientation

2008-03-27 Thread Lassana TOURE
I am using the two functions hclust and plot to draw a dendrogram. The result is a vertical dendrogram , but I prefer a horizontal one. Need help. This is my script: dd1=hclust(d1, method="ward") plot(dd1) [[alternative HTML version deleted]] __