Hi all, I tried plotting a horizontal dendrogram, but it seems as if the labels are not taken into account in the function plot.dendrogram().
A minimal example : Test <- data.frame( x10000x = c(1:10), x20000x = c(2:11), x30000x = c(11:2) ) TestDist <- daisy(data.frame(t(Test))) TestAgnes <- agnes(TestDist) plot(as.dendrogram(TestAgnes),horiz=T) If I run this in R 2.10.0, I get a horizontal dendrogram with the labels to the far right, and partly outside the plot area. This is highly inconvenient. Am I doing something wrong or is this a bug? Kind regards Joris ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.