5
我試圖從圖中獲取具有特定屬性的邊,而不使用get_edge_attributes()函數。我需要一個更靈活的方式來做到這一點。我可以得到節點的屬性,但由於我是新的python在邊緣似乎很難解析通過NetworkX圖中的邊線
G = nx.read_graphml("test.graphml")
for n in G:
print "%s\t%s" %(n, G.node[n].get(attr))
for (s,d) in G: # and here is my problem
print "%s->%s\t%s" %(s, d, G.edge[s][d].get(attr))
謝謝Aric! – geolykos