我正在尝试对我的数据进行聚类,24个属性(20个是分类属性,4个是数字)。我使用了cluster
包和Gower指标:
tabel <- read.table("file.csv", sep=",")
daisy.mat <- as.matrix(daisy(tabel,metric="gower"))
my.cluster <- pam(daisy.mat, k=5, diss = T)
clusplot(daisy.mat, diss = T, my.cluster$clustering, color = T)
但clusplot
在我看来需要太多时间(我以前从未使用它,我不知道这是否正常)......我已经等了两个多小时了。
有什么建议吗?
提前谢谢