connectivity: Clustering Connectivity and Consensus Matrices

Description Usage Arguments Details Value Methods (by generic) References See Also Examples

Description

connectivity is an S4 generic that computes the connectivity matrix based on the clustering of samples obtained from a model's predict method.

The consensus matrix has been proposed by Brunet et al. (2004) to help visualising and measuring the stability of the clusters obtained by NMF approaches. For objects of class NMF (e.g. results of a single NMF run, or NMF models), the consensus matrix reduces to the connectivity matrix.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
connectivity(object, ...)

## S4 method for signature 'ANY'
connectivity(object, ...)

## S4 method for signature 'factor'
connectivity(object, ...)

## S4 method for signature 'numeric'
connectivity(object, ...)

consensus(object, ...)

Arguments

object

an object with a suitable predict method.

...

extra arguments to allow extension. They are passed to predict, except for the vector and factor methods.

Details

The connectivity matrix of a given partition of a set of samples (e.g. given as a cluster membership index) is the matrix C containing only 0 or 1 entries such that:

C_{ij} = 1 if sample i belongs to the same cluster as sample j, 0 otherwise

Value

a square matrix of dimension the number of samples in the model, full of 0s or 1s.

Methods (by generic)

connectivity:

consensus:

References

Brunet J, Tamayo P, Golub TR, Mesirov JP (2004). “Metagenes and molecular pattern discovery using matrix factorization.” _Proceedings of the National Academy of Sciences of the United States of America_, *101*(12), 4164-9. ISSN 0027-8424, doi: 10.1073/pnas.0308531101 (URL: https://doi.org/10.1073/pnas.0308531101).

See Also

predict

Examples

1
2
3
4
5
# clustering of random data
h <- hclust(dist(rmatrix(10,20)))
connectivity(stats::cutree(h, 2))

connectivity(gl(2, 4))

renozao/NMF documentation built on June 14, 2020, 9:35 p.m.