我正在尝试将graphml文件中的数据导入Gephi,但属性未正确加载。 此问题的一个示例(只有一个节点,没有边):
<?xml version='1.0' encoding='utf-8'?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key attr.name="g" attr.type="long" for="edge" id="d10" />
<key attr.name="r" attr.type="long" for="edge" id="d9" />
<key attr.name="b" attr.type="long" for="edge" id="d8" />
<key attr.name="g" attr.type="long" for="node" id="d7" />
<key attr.name="b" attr.type="long" for="node" id="d6" />
<key attr.name="y" attr.type="double" for="node" id="d5" />
<key attr.name="size" attr.type="double" for="node" id="d4" />
<key attr.name="r" attr.type="long" for="node" id="d3" />
<key attr.name="x" attr.type="double" for="node" id="d2" />
<key attr.name="z" attr.type="double" for="node" id="d1" />
<key attr.name="label" attr.type="string" for="node" id="d0" />
<graph edgedefault="undirected">
<node id="Node 1">
<data key="d0">Node 1</data>
<data key="d1">0.0</data>
<data key="d2">-430.34348</data>
<data key="d3">255</data>
<data key="d4">10.0</data>
<data key="d5">-32.351364</data>
<data key="d6">0</data>
<data key="d7">0</data>
</node>
</graph>
</graphml>
注意:该文件由networkx生成,因此我对属性的顺序没有太多控制
一旦我将这个文件导入Gephi,当我检查属性时,我看到了:
size = 4
x,y,z = (0,0,0)
r,g,b = (0,0,0)
Id = Node 1
Label = 255
如果我再次运行相同的代码(并且NetworkX将以不同的顺序写入密钥),其他其他属性将被错误地读取)
为了生成graphml,我使用了类似的东西:
nodeid = 'Node 1'
G = nx.Graph()
G.add_node(nodeid)
G.node[nodeid]['label'] = nodeid
G.node[nodeid]['size'] = 4
G.node[nodeid]['x'] = -430.34348
G.node[nodeid]['y'] = -32.351364
G.node[nodeid]['z'] = 0.0
G.node[nodeid]['r'] = 255
G.node[nodeid]['g'] = 0
G.node[nodeid]['b'] = 0
nx.write_graphml(G, 'test.graphml')
有办法:
1)说服Gephi正确加载属性
2)说服NetworkX写入(在graphml文件中)按字母顺序排序的属性?
答案 0 :(得分:0)
上述问题被确认为错误,并已在Gephi 0.9.2版本中修复。