occurance_table | R Documentation |
The function uses the occurance_matrix
function and
returns all values higher than the threshold
as a DataFrame.
occurance_table(bics, mat, threshold = 0)
bics |
A list of |
mat |
The data matrix used for biclustering. |
threshold |
Only data points higher than this threshold are returned. |
A DataFrame with the frequencies of occurance for values higher
than a threshold
.
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_table(bics, m, threshold=.1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.