python-igraph如何添加重量边缘?
我有一个像[('1', '177', 1.0), ('1', '54', 1.0), ('1', '61', 2.0), ('1', '86', 2.0), ('10', '100', 38.0)]
这样的元组列表。元组中的最后一个是从'1'
到'177'
的边的权重。
但是如何添加呢?我用
g.add_vertices(vertexList)
g.add_edges(edgelist)
但这是错误的。
答案 0 :(得分:2)
我们需要先做一些预处理。
以下代码可以正常工作并完成您的要求。
from igraph import *
# Here we have 5 edges
a = [('1', '177', 1.0), ('1', '54', 1.0), ('1', '61', 2.0),
('1', '86', 2.0), ('10', '100', 38.0)]
edge = []
weights = []
# the loop for i is in range(5) because you have 5 edges
for i in range(5):
for j in range(2):
k =2
edge.append(a[i][j])
weights.append(a[i][k])
edges = [(i,j) for i,j in zip(edge[::2], edge[1::2])]
list1 = []
for i in range(len(edges)):
list1.append((int(edges[i][0]), int(edges[i][1])))
g= Graph()
g.add_vertices(178)
g.add_edges(list1)
g.es['weight'] = weights
g.ecount()
5
g.es['weight']
[1.0, 1.0, 2.0, 2.0, 38.0]
答案 1 :(得分:0)
您不再需要“预处理”数据,因为这种格式对于新方法是准确的:
g = Graph.TupleList([(from, to, weight], ...)
作者的另一个示例:
g=Graph.TupleList([("a", "b", 3.0), ("c", "d", 4.0), ("a", "c", 5.0)], weights=True)
方法可从版本0.6.1获得,作者在这里说: https://answers.launchpad.net/igraph/+question/206397