View source: R/extract_biclust.R
getBiclustClusters | R Documentation |
Extract a list of bicluster objects from a biclust object.
getBiclustClusters( bics, mat, method = "biclust", transposed = FALSE, filterfun = NULL, ... )
bics |
A biclust object. |
mat |
Original matrix, that was used for biclustering. |
method |
Name of the used biclustering algorithm. Should be one of the following: "biclust", "biclust-bimax", "biclust-cc", "biclust-plaid", "biclust-quest", "biclust-spectral", "biclust-xmotifs" or "biclust-qubic", "biclust-unibic". |
transposed |
|
filterfun |
A function to filter biclusters. Only if the function
returns |
... |
Other parameters forwarded to the |
A list of bicluster
objects, which have
to be valid (See validate_bicluster
.
m <- matrix(seq(1:16), nrow=4) # m <- matrix(rnorm(10000), nrow=100) # res <- biclust::biclust(m, method = biclust::BCBimax()) # getBiclustClusters(res, m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.