Description Usage Arguments Value Examples
returns the edge IDs that go OUT or IN from the specified list of vertices
1 | getEfromVlist(g, vlist, mode = "out")
|
g |
igraph object |
vlist |
list of node/vertex names |
mode |
character string: 'in', 'out' or 'all' |
edge IDs that go OUT or IN from the specified list of vertices
1 2 3 4 5 6 7 8 9 10 11 | require('igraph')
## build sample network
from <- c('A','A','B','B','C','C','D','D','E','E','E','F','F','H','L','L','O')
to <- c('B','C','D','E','F','G','H','I','J','J','K','L','G','M','N','O','P')
relations<-cbind(from,to)
g <- graph.data.frame(relations)
tiers <- c(1,2,3,4,1,3,4,2,1,2,3,4,0,0,1,2)
V(g)$tier <- tiers
getEfromVlist(g, c('A', 'D'), 'to')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.