python网络图可视化_用NetworkX在Python中可视化图形

本文探讨了如何使用NetworkX库在Python中进行网络图的可视化。作者在尝试为节点着色时遇到问题,其中中心节点应为深色,而远离中心的节点颜色渐淡。错误出现在将节点距离转换为rgba数组的过程中,导致代码无法正常运行。通过分析和展示代码,作者寻求解决方案。
摘要由CSDN通过智能技术生成

我试图在NetworkX中可视化图形。我需要像这样给图着色:中心节点需要被涂成深色。然后,所有距离较远的节点都需要用更浅的颜色,但当我运行代码时,我得到以下错误:

错误:无法转换参数类型<class'努比·恩达雷'到行上的rgba数组:nx.draw_networkx_nodes(G,pos,nodelist=p.keys(),node_size=90,

node_color=p.values(),cmap=plt.cm.Reds_r)

我认为问题在于:

^{pr2}$

代码是:import numpy

import pandas

import networkx as nx

import unicodecsv as csv

import community

import matplotlib.pyplot as plt

# Generate the Graph

G=nx.davis_southern_women_graph()

# Create a Spring Layout

pos=nx.spring_layout(G)

# Find the center Node

dmin=1

ncenter=0

for n in pos:

x,y=pos[n]

d=(x-0.5)**2+(y-0.5)**2

if d

ncenter=n

dmin=d

""" returns a dictionary of nodes and their distance to the node

supplied as an argument. We will then use these distances

to determine colors"""

p=nx.single_source_shortest_path_length(G,ncenter)

plt.figure(figsize=(8,8))

nx.draw_networkx_edges(G,pos,nodelist=[ncenter],alpha=0.4)

nx.draw_networkx_nodes(G,pos,nodelist=p.keys(),node_size=90,

node_color=p.values(),cmap=plt.cm.Reds_r)

plt.show()

完全回溯Traceback (most recent call last):

File "", line 1, in

runfile('C:/Users/Desktop/Marvel/finding_key_players.py', wdir='C:/Users/Desktop/Marvel')

File "C:\Users\Anaconda33\lib\site- packages\spyderlib\widgets\externalshell\sitecustomize.py", line 685, in runfile

execfile(filename, namespace)

File "C:\Users\Anaconda33\lib\site packages\spyderlib\widgets\externalshell\sitecustomize.py", line 85, in execfile

exec(compile(open(filename, 'rb').read(), filename, 'exec'), namespace)

File "C:/Users/Desktop/Marvel/finding_key_players.py", line 70, in

cmap=plt.cm.Reds_r)

File "C:\Users\Anaconda33\lib\site-packages\networkx\drawing\nx_pylab.py", line 399, in draw_networkx_nodes

label=label)

File "C:\Users\Anaconda33\lib\site-packages\matplotlib\axes\_axes.py", line 3606, in scatter

colors = mcolors.colorConverter.to_rgba_array(c, alpha)

File "C:\Users\Anaconda33\lib\site-packages\matplotlib\colors.py", line 391, in to_rgba_array

if alpha > 1 or alpha < 0:

ValueError: Cannot convert argument type to rgba array

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值