getVisNet: visNetwork Rendering

Description Usage Arguments Value Examples

View source: R/functions.R

Description

This function receives a list of igrpah network objects, and optionally a title and a pre-title and returns a visNetwork representing the given networks (using the visNetwork package)

Usage

1
getVisNet(nets, title = NULL, pre_title = NULL)

Arguments

nets

a list of igrpah network objects

title

main title

pre_title

title before the main title, as in "<pre-titile>: <title>"

Value

a visNetwork representing the given networks

Examples

1
2
3
4
5
6
data = rbinom(300*20, 1, .2)
data = matrix(data,300,20)
res <- cluster_concordance(mat)
nets <- res[[1]]

getVisNet(nets, title, pre_title)

oricel/concordNets documentation built on April 9, 2020, 3:45 a.m.