您的g.xml
GraphML 文件看起来不错,并为我加载到 Cytoscape(我在 Mac 上)。你安装了graphmlreader插件吗?
如果没有,请下载并将其放入您的插件文件夹,然后重新启动 Cytoscape 并尝试g.xml
再次加载网络。
更新这里是一些将图形外观和定位添加到 networkx 图形的代码。它有点冗长,您可以根据需要省略一些属性:
import networkx as nx
G = nx.Graph()
G.add_edge(0, 1, weight=0.1, label='edge', graphics={
'width': 1.0, 'fill': '"#0000ff"', 'type': '"line"', 'Line': [],
'source_arrow': 0, 'target_arrow': 0})
nx.set_node_attributes(G, 'graphics', {
0: {'x': -85.0, 'y': -97.0, 'w': 20.0, 'h': 20.0,
'type': '"ellipse"', 'fill': '"#889999"', 'outline': '"#666666"',
'outline_width': 1.0},
1: {'x': -16.0, 'y': -1.0, 'w': 40.0, 'h': 40.0,
'type': '"ellipse"', 'fill': '"#ff9999"', 'outline': '"#666666"',
'outline_width': 1.0}
})
nx.set_node_attributes(G, 'label', {0: "0", 1: "1"})
nx.write_gml(G, 'network.gml')
结果: