Description Usage Arguments Details Value Using another comparison function Statistical note on bootstrap comparisons Author(s) See Also Examples
View source: R/bootstrapStability.R
Generate bootstrap replicates and recluster on them to determine the stability of clusters with respect to sampling noise.
1 2 3 4 5 6 7 8 9 10 11 12 | bootstrapStability(
x,
FUN = clusterRows,
clusters = NULL,
iterations = 20,
average = c("median", "mean"),
...,
compare = NULL,
mode = "ratio",
adjusted = TRUE,
transposed = FALSE
)
|
x |
A numeric matrix-like object containing observations in the rows and variables in the columns.
If |
FUN |
A function that takes |
clusters |
A vector or factor of cluster identities equivalent to that obtained by calling |
iterations |
A positive integer scalar specifying the number of bootstrap iterations. |
average |
String specifying the method to use to average across bootstrap iterations. |
... |
Further arguments to pass to |
compare |
A function that accepts the original clustering and the bootstrapped clustering, and returns a numeric vector or matrix containing some measure of similarity between them - see Details. |
mode, adjusted |
Further arguments to pass to |
transposed |
Logical scalar indicating that resampling should be done on the columns instead. |
Bootstrapping is conventionally used to evaluate the precision of an estimator by applying it to an in silico-generated replicate dataset.
We can (ab)use this framework to determine the stability of the clusters given the original dataset.
We sample observations with replacement from x
, perform clustering with FUN
and compare the new clusters to clusters
.
For comparing clusters, we compute the ratio matrix from pairwiseRand
and average its values across bootstrap iterations.
High on-diagonal values indicate that the corresponding cluster remains coherent in the bootstrap replicates,
while high off-diagonal values indicate that the corresponding pair of clusters are still separated in the replicates.
If a single value is necessary, we can instead average the adjusted Rand indices across iterations with mode="index"
.
We use the ratio matrix by default as it is more interpretable than a single value like the ARI or the Jaccard index (see the fpc package). It focuses on the relevant differences between clusters, allowing us to determine which aspects of a clustering are stable. For example, A and B may be well separated but A and C may not be, which is difficult to represent in a single stability measure for A. If our main interest lies in the A/B separation, we do not want to be overly pessimistic about the stability of A, even though it might not be well-separated from all other clusters.
If compare=NULL
and mode="ratio"
, a numeric matrix is returned with upper triangular entries set to the ratio of the adjusted observation pair counts (see ?pairwiseRand
) for each pair of clusters in clusters
.
Each ratio is averaged across bootstrap iterations as specified by average
.
If compare=NULL
and mode="index"
, a numeric scalar containing the average ARI between clusters
and the bootstrap replicates across iterations is returned.
If compare
is provided, a numeric array of the same type as the output of compare
is returned, containing the average statistic(s) across bootstrap replicates.
We can use a different method for comparing clusterings by setting compare
.
This is expected to be a function that takes two arguments -
the original clustering first, and the bootstrapped clustering second -
and returns some kind of numeric scalar, vector or matrix containing
statistics for the similarity or difference between the original and bootstrapped clustering.
These statistics are then averaged across all bootstrap iterations.
Any numeric output of compare
is acceptable as long as the dimensions are only dependent on the levels of the original clustering - including levels that have no observations, due to resampling! - and thus do not change across bootstrap iterations.
Technically speaking, some mental gymnastics are required to compare the original and bootstrap clusters in this manner. After bootstrapping, the sampled observations represent distinct entities from the original dataset (otherwise it would be difficult to treat them as independent replicates) for which the original clusters do not immediately apply. Instead, we assume that we perform label transfer using a nearest-neighbors approach - which, in this case, is the same as using the original label for each observation, as the nearest neighbor of each resampled observation to the original dataset is itself.
Needless to say, bootstrapping will only generate replicates that differ by sampling noise. Real replicates will differ due to composition differences, variability in expression across individuals, etc. Thus, any stability inferences from bootstrapping are likely to be overly optimistic.
Aaron Lun
clusterRows
, for the default clustering function.
pairwiseRand
, for the calculation of the ARI.
1 2 3 4 5 6 7 8 9 10 11 | m <- matrix(runif(10000), ncol=10)
# BLUSPARAM just gets passed to the default FUN=clusterRows:
bootstrapStability(m, BLUSPARAM=KmeansParam(4), iterations=10)
# Defining your own clustering function:
kFUN <- function(x) kmeans(x, 2)$cluster
bootstrapStability(m, FUN=kFUN)
# Using an alternative comparison, in this case the Rand index:
bootstrapStability(m, FUN=kFUN, compare=pairwiseRand)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.