Displaying 1 result from an estimated 1 matches for "newclust".
Did you mean:
new_list
2005 Oct 19
1
clustering algorithm detail
...c d e
a 0.00 0.96 1.60 1.60 1.68
b 0.96 0.00 0.96 1.80 2.64
c 1.60 0.96 0.00 0.84 1.80
d 1.60 1.80 0.84 0.00 0.96
e 1.68 2.64 1.80 0.96 0.00
Now, I would like to run a clustering algorithm on it. I tried:
newclust = hclust(distmat)
and got the following error:
Error in if (n < 2) stop("Must have n >= 2 objects to cluster") :
argument is of length zero
I understand that the documentation says that the matrix ' d: a dissimilarity structure as produced by 'dist''....