5
get_edge_attributes() 함수를 사용하지 않고 그래프에서 특정 특성을 가진 모서리를 가져 오려고합니다. 더 유연한 방법이 필요합니다. 내가 노드 특성을 얻을 수 있지만, 내가 파이썬 가장자리에 새로 온 이후로 보일 어려운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