How can I give a vertex a text?

Hi,

how can I specify for each vertex a text so that when i draw the graph its
text gets drawn instead of its index?

Best,
Gucko

attachment.html (209 Bytes)

Please take a look in the full documentation of the graph_draw()
function, specially the "text" attribute:

    http://graph-tool.skewed.de/static/doc/draw.html#graph_tool.draw.graph_draw

Essentially, something as simple as graph_draw(g, vertex_text=foo) will
do what you want, where foo is a vertex property map containing the text
you want.

Best,
Tiago