View source: R/compareWordNet.R
plotDynamic | R Documentation |
List network of words using graphlayouts::layout_as_dynamic
plotDynamic(
listOfNets,
concat = "union",
alpha = 0.5,
titles = NULL,
tag = FALSE,
useDynamic = TRUE
)
listOfNets |
list consisting results of wc* functions (plotType="network") |
concat |
"union" or "intersection" |
alpha |
pass to layout_as_dynamic |
titles |
title to be shown on plot |
tag |
show tag on plot |
useDynamic |
use layout_as_dynamic |
The function accepts the list of biotext object storing inferred networks. The networks are aligned by the specific layout and plotted.
plot comparing gene clusters
library(igraph)
wc1 <- refseq(c("DDX41","IRF3","XRCC1","ERCC1","ERCC2","ERCC3"), plotType="network")
wc2 <- refseq(c("DDX41","PNKP","XRCC1","COPA","CD4","NLRP3"), plotType="network")
compare <- plotDynamic(list(wc1, wc2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.