Learn R Programming

fdm2id (version 0.9.6)

intern.interclass: Clustering evaluation through interclass inertia

Description

Evaluation a clustering algorithm according to interclass inertia.

Usage

intern.interclass(clus, d, type = c("global", "cluster"))

Value

The evaluation of the clustering.

Arguments

clus

The extracted clusters.

d

The dataset.

type

Indicates whether a "global" or a "cluster"-wise evaluation should be used.

See Also

intern, intern.dunn, intern.intraclass

Examples

Run this code
require (datasets)
data (iris)
km = KMEANS (iris [, -5], k = 3)
intern.interclass (km$clus, iris [, -5])

Run the code above in your browser using DataLab