How to make R output text details about a dendrogram object?
问题 Please see my previous question for details relating to test data and commands used to create a dendrogram: Using R to cluster based on euclidean distance and a complete linkage metric, too many vectors? Here is a quick summary of my commands to make the dendrogram: un_exprs <- as.matrix(read.table("sample.txt", header=TRUE, sep = "\t", row.names = 1, as.is=TRUE)) exprs <- t(un_exprs) eucl_dist=dist(exprs,method = 'euclidean') hie_clust=hclust(eucl_dist, method = 'complete')\ dend <- as