【发布时间】:2015-09-14 02:51:26
【问题描述】:
第一次发帖,请轻点。 :)
我正在尝试在 Networkx 中绘制不同类型的字符网络,并希望为每种类型设置不同的节点形状。例如,我希望角色是圆形,生物是三角形等。我已经尝试了几个小时并进行了广泛的搜索,但除了为每种类型的字符设置不同的 node_lists 并分别渲染它们,这似乎违反直觉。
问题是我无法从内部访问 node_shape 字典值:
nx.draw_networkx_nodes(G, pos)
我尝试了多种解决方案,包括尝试访问节点属性、创建外部字典或列表并从调用中访问它、设置列表理解或迭代器,但似乎没有任何效果。
要么我传递一个批量提取的列表,一个函数无法散列的字典,要么传递一个列表的实例,例如shape_list.pop(0),在这种情况下,函数只接受第一个值并将其应用于所有节点。
我可以通过创建一个单独的 node_colors 列表来设置颜色,该列表由函数迭代,甚至尝试创建一个字典,以便 node_shape 由 node_color 触发,但这也不起作用。
我希望将代码用作使用 Python 3.4 和 Django 1.8 开发的网络应用程序的附加组件,因此 Graphviz 不是一个选项。
提前感谢您对备用库的任何帮助或参考。
这是我的代码:
import json
import requests
import networkx as nx
import matplotlib.pyplot as plt
personas = 'http://story-chronicles.herokuapp.com/storyobjects/'
target = requests.get(personas)
x = target.json()
story_objects = {}
labels = {}
node_colors = []
for character in x:
name = character["name"]
story = character["story"]
c_type = character["c_type"]
story_objects[name] = {}
story_objects[name]['name'] = name
story_objects[name]['story'] = story
story_objects[name]['c_type'] = c_type
story_objects[name]['to_relationships'] = []
if character['c_type'] == "Character":
story_objects[name]['node_shape'] = 'o'
story_objects[name]['node_color'] = 'r'
elif character['c_type'] == "Organization":
story_objects[name]['node_shape'] = 'h'
story_objects[name]['node_color'] = 'b'
elif character['c_type'] == "Creature":
story_objects[name]['node_shape'] = '^'
story_objects[name]['node_color'] = 'g'
elif character['c_type'] == "Force":
story_objects[name]['node_shape'] = 'v'
story_objects[name]['node_color'] = 'c'
elif character['c_type'] == "Thing":
story_objects[name]['node_shape'] = 's'
story_objects[name]['node_color'] = 'y'
for relationship in character["to_relationships"]:
break_1 = relationship.find(">>")
break_2 = relationship.find("weight:")
sub_1 = relationship[0:break_1].strip()
context = relationship[break_1:break_2]
weight = relationship[break_2+8:-1]
story_objects[name]['to_relationships'].append([sub_1, context, weight])
G=nx.MultiDiGraph()
for sub in story_objects:
s = story_objects[sub]
if s['story'] == "http://story-chronicles.herokuapp.com/story/1/":
G.add_node(s['name'], node_shape=s['node_shape'])
labels[s['name']] = s['name']
node_colors.append(s['node_color'])
print("***", s['name'], "***", s['c_type'])
print("details:", s['node_color'], s['node_shape'])
for i in s['to_relationships']:
print('target:', i[0])
print('context:', i[1])
print('weight:', i[2])
G.add_edge(s['name'], i[0], weight=int(i[2]))
print("")
node_shapes=nx.get_node_attributes(G, 'node_shape') # Latest attempt at getting this to work
node_shapes = [v for k,v in node_shapes.items()]
pos=nx.spring_layout(G)
G.degree(weight=weight)
nx.draw_networkx_nodes(G, pos, node_color=node_colors, node_shape=node_shapes.pop(0)) # <--- This is where I'm having problems
nx.draw_networkx_edges(G, pos)
nx.draw_networkx_labels(G, pos, labels)
plt.show()
【问题讨论】:
-
您的某些缩进有错误。你能接受你发布的内容并确保复制/粘贴产生可行的代码吗?
-
所以 - 基本答案(我记得)是每个绘图命令必须为每个节点使用相同的形状。所以如果你想绘制多个不同的形状,你需要每次调用
draw_networkx_nodes。它使用matplotlib.pyplot.scatter, (matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.scatter) 这就是它有这个限制的原因。 -
我已经更新了代码。谢谢,乔尔。是否有另一个与 Python3 一起工作的库可以做到这一点?
标签: python matplotlib attributes nodes networkx