1

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

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'

我错过了什么吗?

4

1 回答 1

4

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

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

于 2013-05-25T11:37:54.430 回答