1
我是igraph的新手。我試過這個簡單的代碼,但它並沒有在節點內顯示vertice id。igraph中的Vertice標籤
from igraph import *
g = Graph()
g.add_vertices(3)
g.add_edges([(0,1), (1,2)])
plot(g, layout = g.layout("kk"))
任何人都可以請告訴我,爲什麼ID不顯示?
我是igraph的新手。我試過這個簡單的代碼,但它並沒有在節點內顯示vertice id。igraph中的Vertice標籤
from igraph import *
g = Graph()
g.add_vertices(3)
g.add_edges([(0,1), (1,2)])
plot(g, layout = g.layout("kk"))
任何人都可以請告訴我,爲什麼ID不顯示?
由於ID是不默認顯示爲標籤;如果你想向他們展示),你必須每個節點的label
屬性設置在其標籤或指定vertex_label=...
作爲關鍵字參數plot
:
g.vs["label"] = range(g.vcount())
或
plot(g, layout="kk", vertex_label=range(g.vcount())