Displaying 1 result from an estimated 1 matches for "scoredendrogramobj".
Did you mean:
scoredendogramobj
2009 Apr 03
0
dendrogram rect.hclust() not working?
...hclust(scoreDistanceObj, method=clustMethod)
order <- 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(coloredLeafScoreDendrogram...