Displaying 1 result from an estimated 1 matches for "coloredleafscoredendrogramobj".
2009 Apr 03
0
dendrogram rect.hclust() not working?
...scoreClusterObj$order
orderedLabels <- rep(0, length(order))
for (orderIndex in 1:length(order)) {
# this puts a "name" to the permutation of leaves, done by hclust()
orderedLabels[orderIndex] <- classes[order[orderIndex]]
}
scoreDendrogramObj <- as.dendrogram(scoreClusterObj)
coloredLeafScoreDendrogramObj <- dendrapply(scoreDendrogramObj,
markColoredLeaves)
scoreDendrogramPlot <- plot(coloredLeafScoreDendrogramObj,
horiz=FALSE, axes=FALSE)
significantClustersInScoreDendrogramObj <-
dendrapply(coloredLeafScoreDendrogramObj, markSignificantClusters)
--------------------
I have the loca...