使用networkx和gexf格式时的节点形状

时间:2013-05-25 09:39:04

标签: python networkx gephi

我正在尝试使用networkX自定义图形(用于gexf格式)。但我无法设置节点的形状。 使用示例here

import sys
import urllib2
import networkx as nx
data = urllib2.urlopen('http://gexf.net/data/viz.gexf')
G = nx.read_gexf(data)

print G.node['a']

G.node['a']['viz']['position']['x']=10
G.node['a']['viz']['position']['y']=20

# now my addition 
G.node['a']["viz"]['shape'] = 'disc'

print G.node['a'] this seems to work

但我无法写文件

nx.write_gexf(G,sys.stdout)

错误是:

# AttributeError: 'str' object has no attribute 'get'

我错过了什么吗?

1 个答案:

答案 0 :(得分:4)

这是GEXF格式编写器中的一个错误。

希望现在修复:https://github.com/networkx/networkx/pull/875