Displaying 1 result from an estimated 1 matches for "p16142989".
Did you mean:
1142989
2008 Mar 19
0
Table for clustering dendrogram
...r all,
I am using the hclust method in R. I am building nice dendrograms with it.
Actually for my further analysis I want to get the number of bifurcations
(bif) for each object (labels) in the dendrogram. That has to be calculated
by the colums merge, height and order.
http://www.nabble.com/file/p16142989/Sc2Mown_Pred.txt Sc2Mown_Pred.txt
Sc2Mpred<- read.table("Sc2Mown_Pred.txt", header=T, row.names=1)
library(vegan)
attach(Sc2Mpred)
Sc2Mpred_JD <- vegdist(Sc2Mpred, method="jaccard", binary=T, diag=FALSE,
upper=FALSE, na.rm = FALSE)
hc2<- hclust(Sc2Mpred_JD, "ave...