get_nets: Network visualization

Description Usage Arguments Value Examples

Description

Creates network visualizations based on the adjacency matrix obtained with the find_cbf_modules method

Usage

1
2
3
4
get_nets(fc, n = 10, min_elements = 5, ...)

## S4 method for signature 'fcoex'
get_nets(fc, n = 10, min_elements = 5, ...)

Arguments

fc

Object of class fcoex.

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.

Value

Object of class fcoex with profile plots

Examples

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)

lubianat/fcoex documentation built on Aug. 6, 2020, 3:39 a.m.