I have been scouring the docs trying to find a function that will return a list vertices from an iGraph graph but can't find one. Does anyone know how to do get a list of vertices from an iGraph graph?
Getting vertex list from python-igraph
14.9k Views Asked by user2327814 At
3
There are 3 best solutions below
0

If you are looking for names (in case you used names for your vertices), the following code will give you the list of names of all vertices in sequence:
named_vertex_list = g.vs()["name"]
If you are looking for just the indices, then simply creating a range object with vcount will give you the indices
vertex_indices = range(g.vcount())
The property
vs
of theigraph.Graph
object refers to itsVertexSeq
object:You can also create one from your graph:
You can use the property as an iterator: