attribute_graph | R Documentation |
The function generates co-occurance networks for all the attributes.
E.g. if MARGIN="column"
, for each column, a oc-occurance matrix
of rows is generated, which includes all biclusters, where the
column element is present.
attribute_graph(bics, m, MARGIN = "column")
bics |
A list of |
m |
The matrix used for biclustering. |
MARGIN |
|
A list of numeric matrices.
If MARGIN="column"
("row"
), the list has a
length of ncol(m)
(nrow(m)
)
and each matrix the dimensions of c(nrow(m),
nrow(m))
(c(ncol(m), ncol(m))
)
m <- matrix(seq(1:16), nrow=4) # m <- matrix(rnorm(10000), nrow=100) # bics <- c(run_fabia(m), run_isa(m), run_plaid(m)) # attribute_graph(bics, m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.