Displaying 1 result from an estimated 1 matches for "daisemol".
2003 Aug 04
1
hclust() and agnes() method="average" divergence (PR#3648)
...ce different results in the
example below when both use method="average"?? I'm not able to reproduce
the problem with other datasets.
ereck<-read.table("Ereck.txt",header=TRUE,sep="\t")
emol<-subset(ereck,select=c(11:18,20:32))
library(cluster)
library(mva)
daisemol<-daisy(emol,type=list(asymm=c(1:21)))
layout(matrix(c(1,1,2,2),2,2,byrow=TRUE))
hclustmol<-hclust(daisemol,method="average")
plot(hclustmol,cex=0.6)
agnesmol<-agnes(daisemol,method="average")
pltree(agnesmol,cex=0.6)
coagnes<-cophenetic(agnesmol)
cor(coagnes,daisem...