vcount() and gorder() are aliases.
See also
Other structural queries:
[.igraph(),
[[.igraph(),
adjacent_vertices(),
are_adjacent(),
ends(),
get_edge_ids(),
gsize(),
head_of(),
incident(),
incident_edges(),
is_directed(),
neighbors(),
tail_of()
Examples
g <- make_ring(10)
gorder(g)
#> [1] 10
vcount(g)
#> [1] 10
