Skip to content
Prev 69845 / 398525 Next

cluster results using fanny

Hi Barbara,

I think, there is a problem with fanny, when you have standardised data.
For example:
library(mvoutlier)
library(cluster)
data(chorizon)
a <- fanny(chorizon[,101:110],4)
b <- fanny(scale(chorizon[,101:110]),4)
a$mem # is ok, but
b$mem # have same memberships

Better to use function cmeans in package e1071, which gives correct
memberships!

Best,
Matthias