Description Usage Arguments Details Value Examples
Creates network visualizations based on the adjacency matrix obtained with the find_cbf_modules method
1 2 3 4 |
fc |
Object of class |
n |
number of nodes to label |
min_elements |
Minimum number of elements in a module for it to be plotted. Defaults to 5. |
... |
Optional parameters. |
This function was copied and adapted from the CEMiTool package. The visualization of networks in this function is derivative of the intelectual work of CEMiTool's authors.
Object of class fcoex
with profile plots
1 2 3 4 5 6 7 8 | library(SingleCellExperiment)
data("mini_pbmc3k")
targets <- colData(mini_pbmc3k)$clusters
exprs <- as.data.frame(assay(mini_pbmc3k, "logcounts"))
fc <- new_fcoex(exprs, targets)
fc <- discretize(fc)
fc <- find_cbf_modules(fc)
fc <- get_nets(fc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.