Displaying 1 result from an estimated 1 matches for "irispart".
Did you mean:
erspart
2008 Sep 02
2
cluster a distance(analogue)-object using agnes(cluster)
...s(Test.Gower, diss=T)
Fehler in agnes(Test.Gower, diss = T) :
(list) Objekt kann nicht nach 'logical' umgewandelt werden
Error in agnes(Test.Gower, diss=T).
(list) object can`t be transformed to "logical"
working example only numerics used:
library(cluster)
library(analogue)
irisPart<-subset(iris, select= Sepal.Length:Petal.Width)
Dist.Gower <- distance(irisPart, method ="mixed")
AgnesA <- agnes(Dist.Gower, method="average", diss=TRUE)
Would be great if somebody could help me.
The dataset that I would like to use for the clustering also contains
f...