powered by
A vertex is a neighbor of another one (in other words, the two vertices are adjacent), if they are incident to the same edge.
neighbors(graph, v, mode = c("out", "in", "all", "total"))
The input graph.
The vertex of which the adjacent vertices are queried.
Whether to query outgoing (‘out’), incoming (‘in’) edges, or both types (‘all’). This is ignored for undirected graphs.
A vertex sequence containing the neighbors of the input vertex.
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_edges; incident; is.directed, is_directed; tail_of
[.igraph
[[.igraph
adjacent_vertices
are.connected
are_adjacent
ecount
gsize
ends
get.edge
get.edges
get.edge.ids
gorder
vcount
head_of
incident_edges
incident
is.directed
is_directed
tail_of
# NOT RUN { g <- make_graph("Zachary") n1 <- neighbors(g, 1) n34 <- neighbors(g, 34) intersection(n1, n34) # }
Run the code above in your browser using DataLab