intern.interclass {fdm2id} | R Documentation |
Clustering evaluation through interclass inertia
Description
Evaluation a clustering algorithm according to interclass inertia.
Usage
intern.interclass(clus, d, type = c("global", "cluster"))
Arguments
clus |
The extracted clusters. |
d |
The dataset. |
type |
Indicates whether a "global" or a "cluster"-wise evaluation should be used. |
Value
The evaluation of the clustering.
See Also
intern
, intern.dunn
, intern.intraclass
Examples
require (datasets)
data (iris)
km = KMEANS (iris [, -5], k = 3)
intern.interclass (km$clus, iris [, -5])
[Package fdm2id version 0.9.9 Index]