okm: OKM clustering.

Description Usage Arguments Examples

View source: R/okm.R

Description

Overlapping Kmeans algorithm.

Usage

1
2
okm(X, centers, iter.max = 10, nstart = 1, trace = FALSE,
  method = "euclid")

Arguments

X

A data.

centers

A number or matrix, number of cluster for clustering or pre init centers.

iter.max

the maximum number of iterations allowed.

nstart

A number, number of execution to find the best result.

trace

A boolean, tracing information on the progress of the algorithm is produced.

method

A string ('euclid': Euclidian distance, 'manhattan': Manhattan distance).

Examples

1
okm(iris[,-5], 3)

COveR documentation built on Dec. 6, 2017, 5:06 p.m.

Related to okm in COveR...