MKMean {MKMeans}R Documentation

Class to contain the results from function MKMeans.

Description

The function MKMeans return object of class MKMean that contains the number of clusters, the center of each cluster, and the observations in each cluster.

Objects from the Class

new("MKMean",K=new("numeric"),Centers=new("matrix"),Classes=new("list"),Clusters=new("list"))

Slots

K:

An integer being the number of clusters.

Centers:

A numeric matrix with each row being center of a cluster.

Classes:

An integer list showing the original indexes of the observations in each cluster.

Clusters:

A numeric list showing the observations in each cluster.

Author(s)

Yi Ya

References

Yarong Yang(Yi Ya) and Jacob Zhang.(2022) MKMeans: A Modern K-Means Clustering Algorithm. submitted to Journal of American Statistical Association

Examples

showClass("MKMean")

[Package MKMeans version 2.1 Index]