Displaying 1 result from an estimated 1 matches for "methodo".
Did you mean:
method
2001 Jun 12
1
cophenetic matrix
...atrix nxn ou nxm
## proximity between objects: nxn or description of n objects with m attributes
if(quest == 1){
dis1 <- as.dist(fichier)
}
else{
methode <- ask(message="The distance measure to be used = euclidean:1 maximum:2 manhattan:3 canberra:4 or binary:5")
methodo <- c("euclidean", "maximum", "manhattan", "canberra" ,"binary")
dis1 <- dist(fichier , method = methodo[[methode]])
}
methode2 <- ask(message ="The agglomeration method to be used = ward:1 single:2 complete:3 average:4 mcquit...