Edge List输入格式

test.edgesa b b c b d c d

g = networkx.read_edgelist("test.edges")
print g.edges()

结果:
[('a', 'b'), ('c', 'b'), ('c', 'd'), ('b', 'd')]


test_adj.txt
a b b c d c d
邻接表形式

g = networkx.read_adjlist("test_adj.txt")
print edges()

结果:
[('a', 'b'), ('c', 'b'), ('c', 'd'), ('b', 'd')]


SecondLife
1.9k 声望252 粉丝

引用和评论

0 条评论