Description Usage Arguments Details Author(s) See Also Examples
Generate igraph object from edge list
1 |
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>
1 2 | 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.