cluster (version 1.14.4)

clara.object: Clustering Large Applications (CLARA) Object

Description

The objects of class "clara" represent a partitioning of a large dataset into clusters and are typically returned from clara.

Arguments

Value

  • A legitimate clara object is a list with the following components:
  • samplelabels or case numbers of the observations in the best sample, that is, the sample used by the clara algorithm for the final partition.
  • medoidsthe medoids or representative objects of the clusters. It is a matrix with in each row the coordinates of one medoid. Possibly NULL, namely when the object resulted from clara(*, medoids.x=FALSE). Use the following i.med in that case.
  • i.medthe indices of the medoids above: medoids <- x[i.med,] where x is the original data matrix in clara(x,*).
  • clusteringthe clustering vector, see partition.object.
  • objectivethe objective function for the final clustering of the entire dataset.
  • clusinfomatrix, each row gives numerical information for one cluster. These are the cardinality of the cluster (number of observations), the maximal and average dissimilarity between the observations in the cluster and the cluster's medoid. The last column is the maximal dissimilarity between the observations in the cluster and the cluster's medoid, divided by the minimal dissimilarity between the cluster's medoid and the medoid of any other cluster. If this ratio is small, the cluster is well-separated from the other clusters.
  • dissdissimilarity (maybe NULL), see partition.object.
  • silinfolist with silhouette width information for the best sample, see partition.object.
  • callgenerating call, see partition.object.
  • datamatrix, possibibly standardized, or NULL, see partition.object.

Methods, Inheritance

The "clara" class has methods for the following generic functions: print, summary.

The class "clara" inherits from "partition". Therefore, the generic functions plot and clusplot can be used on a clara object.

See Also

clara, dissimilarity.object, partition.object, plot.partition.