nx.draw_networkx出现“无法散列的类型:'列表'”错误

时间:2020-04-04 04:52:44

标签: python-3.x

我使用NetworksX库管理图形。

g = nx.Graph()
plt.figure(figsize=(12, 12))
layout = nx.spring_layout(g)

influenceur_important = [[node,g.degree(node)] for node in g.nodes() if g.degree(node) > 50]
size = [g.degree(node) * 80 for node in g.nodes()]
nx.draw_networkx(g, pos=layout ,nodelist=influenceur_important, node_size=size, node_color='#AAAAAA',
                 with_labels=False, edge_color='#fc8d62',scale=2.,width=10.0,weight=0.5,font_size=17)

plt.box(on=None)
plt.show()

我收到错误TypeError:无法散列的类型:'list' enter image description here 这是因为参数nodelist。但是,请问是什么问题? 非常感谢。

0 个答案:

没有答案