occurance_matrix | R Documentation |
The function computes a matrix with the same dimensions as the input matrix and fills the matrix elements with the frequence of occurance of the data points in the input list of biclusters.
occurance_matrix(bics, mat)
bics |
A list of |
mat |
The data matrix used for biclustering. |
A numeric matrix with the dimensions of the input matrix. The values represent the frequency of occurance of this point in the list of biclusters.
m <- matrix(seq(1:16), nrow=4) # m <- matrix(rnorm(10000), nrow=100) # bics <- c(run_fabia(m), run_isa(m), run_plaid(m)) # occurance_matrix(bics, m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.