使用networkx,即时尝试从txt文件导入图形。
图表格式是这样的(例如:):
a--b a--c b--d c--e
Thtat表示:G=nx.read_edgelist("path\file.txt")
我想这是一个边缘列表,所以我尝试使用适当的命令:
{{1}}
但它有效吗?有什么想法吗?
答案 0 :(得分:0)
你在找这样的东西吗?
import networkx as nx
with open('a.txt') as f:
lines = f.readlines()
myList = [line.strip().split() for line in lines]
# [['a', 'b'], ['a', 'c'], ['b', 'd'], ['c', 'e']]
g = nx.Graph()
g.add_edges_from(myList)
print g.nodes()
# ['a', 'c', 'b', 'e', 'd']
print g.edges()
# [('a', 'c'), ('a', 'b'), ('c', 'e'), ('b', 'd')]