generate.pathway | R Documentation |
Generate igraph object from edge list
generate.pathway(el)
el |
edge list, matrix with two columns. The first column is the input node and the second column is the output node. |
The function is a wrapper of graph.edgelist
and it generates
a directed graph.
In the function, repeated edged for two nodes will be eliminated.
Zuguang Gu <z.gu@dkfz.de>
cepa
, graph.edgelist
edgelist = rbind(c("a", "b"), c("a", "b"), c("a", "c"))
g = generate.pathway(edgelist)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.