powered by
This function is similar to incident, but it queries multiple vertices at once.
incident
incident_edges(graph, v, mode = c("out", "in", "all", "total"))
Input graph.
The vertices to query
Whether to query outgoing (‘out’), incoming (‘in’) edges, or both types (‘all’). This is ignored for undirected graphs.
A list of edge sequences.
Other structural queries: [.igraph; [[.igraph; adjacent_vertices; are.connected, are_adjacent; ecount, gsize; ends, get.edge, get.edges; get.edge.ids; gorder, vcount; head_of; incident; is.directed, is_directed; neighbors; tail_of
[.igraph
[[.igraph
adjacent_vertices
are.connected
are_adjacent
ecount
gsize
ends
get.edge
get.edges
get.edge.ids
gorder
vcount
head_of
is.directed
is_directed
neighbors
tail_of
# NOT RUN { g <- make_graph("Zachary") incident_edges(g, c(1, 34)) # }
Run the code above in your browser using DataLab