Learn R Programming

clue (version 0.1-0)

boot: Bootstrap Resampling of Clustering Algorithms

Description

Generate bootstrap replicates of the results of applying a base clustering algorithm to a given data set.

Usage

cl_boot(x, B, k = NULL,
        algorithm = if (is.null(k)) "hclust" else "kmeans", 
        parameters = list(), resample = FALSE)

Arguments

x
the data set of objects to be clustered, as appropriate for the base clustering algorithm.
B
an integer giving the number of bootstrap replicates.
k
NULL (default), or an integer giving the number of classes to be used for a partitioning base algorithm.
algorithm
a character string or function specifying the base clustering algorithm.
parameters
a named list of additional arguments to be passed to the base algorithm.
resample
a logical indicating whether the data should be resampled in addition to sampling from the algorithm. Currently, only FALSE is supported, and an error is given otherwise.

Value

  • A cluster ensemble with the results of the $B$ runs of the base algorithm on the data set.

Details

This is a rather simple-minded function with limited applicability, and mostly useful for studying the effect of (uncontrolled) random initializations of fixed-point partitioning algorithms such as kmeans or cmeans, see the examples. To study the effect of varying control parameters or explicitly providing random starting values, the respective cluster ensemble has to be generated explicitly (most conveniently by using replicate to create a list lst of suitable instances of clusterings obtained by the base algorithm, and using cl_ensemble(list = lst) to create the ensemble).

Examples

Run this code
## Study e.g. the effect of random kmeans() initializations.
data("Cassini")
pens <- cl_boot(Cassini$x, 15, 3)
diss <- cl_dissimilarity(pens)
summary(c(diss))
plot(hclust(diss))

Run the code above in your browser using DataLab