How to use dissimilarity matrix with NbClust in R

后端 未结 2 1360
故里飘歌
故里飘歌 2021-01-26 01:47

I have a dissimilarity matrix computed by other R package, TSclust with INT.PER method. I want to use the dissimilarity matrix to retrieve optimal number of clusters from NbClus

相关标签:
2条回答
  • 2021-01-26 02:18

    Some of the indexes require numerical data.

    Therefore, this function cannot be used on your data set, unless you disable these methods/indexes that require coordinates.

    0 讨论(0)
  • 2021-01-26 02:27

    I'm trying to use the NbClust package as well. With a dissimilarity matrix, I was only able to run these 5 indexes:

    indexes <- c('frey', 'dunn', 'cindex', 'silhouette', 'mcclain')
    
    0 讨论(0)
提交回复
热议问题