Skip to contents

vcount() and gorder() are aliases.

Usage

vcount(graph)

gorder(graph)

Arguments

graph

The graph

Value

Number of vertices, numeric scalar.

See also

Examples

g <- make_ring(10)
gorder(g)
#> [1] 10
vcount(g)
#> [1] 10