Learn R Programming

daltoolbox (version 1.1.727)

cluster_pam: PAM

Description

Creates a clusterer object that uses the Partition Around Medoids (PAM) method It wraps the cluster library.

Usage

cluster_pam(k = 1)

Value

returns PAM object.

Arguments

k

the number of clusters to generate.

Examples

Run this code
# setup clustering
model <- cluster_pam(k = 3)

#load dataset
data(iris)

# build model
model <- fit(model, iris[,1:4])
clu <- cluster(model, iris[,1:4])
table(clu)

# evaluate model using external metric
eval <- evaluate(model, clu, iris$Species)
eval

Run the code above in your browser using DataLab