Rev 29688 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{order.dendrogram}\alias{order.dendrogram}\title{ Get the ordering of the leaves in a dendrogram }\description{This function returns the order (index) for the leaves in adendrogram. These indices can then be used to access the appropriatecomponents of any additional data.}\usage{order.dendrogram(x)}\arguments{\item{x}{A dendrogram (see \code{\link{as.dendrogram}}).}}\details{The indices for the leaves in left to right order are retrieved.}\value{A vector with length equal to the number of leaves in the dendrogramis returned. Each element is the index into the original data (fromwhich the dendrogram was computed)}\author{R. Gentleman}\seealso{\code{\link{reorder}}, \code{\link{dendrogram}}.}\examples{set.seed(123)x <- rnorm(10)hc <- hclust(dist(x))hc$orderdd <- as.dendrogram(hc)order.dendrogram(dd)}\keyword{manip}