あなたの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')
結果: