python networkx 根据图的权重画图实现


Posted in Python onJuly 10, 2019

首先输入边和边的权重,随后画出节点位置,根据权重大小划分实边和虚边

python networkx 根据图的权重画图实现

#coding:utf-8
#!/usr/bin/env python
"""
An example using Graph as a weighted network.
"""
__author__ = """Aric Hagberg (hagberg@lanl.gov)"""
try:
  import matplotlib.pyplot as plt
except:
  raise
 
import networkx as nx
 
G=nx.Graph()
#添加带权边
G.add_edge('a','b',weight=0.6)
G.add_edge('a','c',weight=0.2)
G.add_edge('c','d',weight=0.1)
G.add_edge('c','e',weight=0.7)
G.add_edge('c','f',weight=0.9)
G.add_edge('a','d',weight=0.3)
#按权重划分为重权值得边和轻权值的边
elarge=[(u,v) for (u,v,d) in G.edges(data=True) if d['weight'] >0.5]
esmall=[(u,v) for (u,v,d) in G.edges(data=True) if d['weight'] <=0.5]
#节点位置
pos=nx.spring_layout(G) # positions for all nodes
#首先画出节点位置
# nodes
nx.draw_networkx_nodes(G,pos,node_size=700)
#根据权重,实线为权值大的边,虚线为权值小的边
# edges
nx.draw_networkx_edges(G,pos,edgelist=elarge,
          width=6)
nx.draw_networkx_edges(G,pos,edgelist=esmall,
          width=6,alpha=0.5,edge_color='b',style='dashed')
 
# labels标签定义
nx.draw_networkx_labels(G,pos,font_size=20,font_family='sans-serif')
 
plt.axis('off')
plt.savefig("weighted_graph.png") # save as png
plt.show() # display

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
从零学python系列之新版本导入httplib模块报ImportError解决方案
May 23 Python
用Python实现通过哈希算法检测图片重复的教程
Apr 02 Python
使用PyInstaller将Python程序文件转换为可执行程序文件
Jul 08 Python
Python 多线程实例详解
Mar 25 Python
使用python遍历指定城市的一周气温
Mar 31 Python
Python编程之Re模块下的函数介绍
Oct 28 Python
Python3爬虫全国地址信息
Jan 05 Python
对python函数签名的方法详解
Jan 22 Python
解决tensorflow添加ptb库的问题
Feb 10 Python
pycharm新建Vue项目的方法步骤(图文)
Mar 04 Python
python程序输出无内容的解决方式
Apr 09 Python
Python实战之用tkinter库做一个鼠标模拟点击器
Apr 27 Python
python networkx 包绘制复杂网络关系图的实现
Jul 10 #Python
python卸载后再次安装遇到的问题解决
Jul 10 #Python
Python求离散序列导数的示例
Jul 10 #Python
Python Matplotlib 基于networkx画关系网络图
Jul 10 #Python
我们为什么要减少Python中循环的使用
Jul 10 #Python
详解Python中的各种转义符\n\r\t
Jul 10 #Python
使用python画社交网络图实例代码
Jul 10 #Python
You might like
PHP curl 抓取AJAX异步内容示例
2014/09/09 PHP
php写入、删除与复制文件的方法
2015/06/20 PHP
PHP 实现人民币小写转换成大写的方法及大小写转换函数
2017/11/17 PHP
PHP中localeconv()函数的用法
2019/03/26 PHP
基于jquery中children()与find()的区别介绍
2013/04/26 Javascript
JavaScript弹出新窗口后向父窗口输出内容的方法
2015/04/06 Javascript
使用Node.js处理前端代码文件的编码问题
2016/02/16 Javascript
AngularGauge 属性解析详解
2016/09/06 Javascript
D3.js实现柱状图的方法详解
2016/09/21 Javascript
vue.js指令v-model实现方法
2016/12/05 Javascript
node实现简单的反向代理服务器
2017/07/26 Javascript
jQuery 实现倒计时天,时,分,秒功能
2018/07/31 jQuery
jquery操作checkbox的常用方法总结【附测试源码下载】
2019/06/10 jQuery
Vue+Vant 图片上传加显示的案例
2020/11/03 Javascript
使用Python编写一个在Linux下实现截图分享的脚本的教程
2015/04/24 Python
在Python中marshal对象序列化的相关知识
2015/07/01 Python
Python排序搜索基本算法之希尔排序实例分析
2017/12/09 Python
Python3爬虫中Splash的知识总结
2020/07/10 Python
MAC平台基于Python Appium环境搭建过程图解
2020/08/13 Python
利用Python如何制作贪吃蛇及AI版贪吃蛇详解
2020/08/24 Python
python 基于DDT实现数据驱动测试
2021/02/18 Python
SEPHORA新西兰官方网站:购买化妆品和护肤品
2016/12/02 全球购物
英国手机零售商:Metrofone
2019/03/18 全球购物
JAVA代码查错题
2014/10/10 面试题
数据库专业英语
2012/11/30 面试题
北京RT科技有限公司.net工程师面试题
2013/02/15 面试题
什么是ESB?请介绍一下ESB?
2015/05/27 面试题
自我推荐书
2013/12/04 职场文书
好的演讲稿开场白
2013/12/30 职场文书
2014年圣诞节促销方案
2014/03/14 职场文书
大学生简历求职信
2014/06/24 职场文书
群众路线自我剖析及整改措施
2014/11/04 职场文书
学校通报表扬范文
2015/05/04 职场文书
JavaScript严格模式不支持八进制的问题讲解
2021/11/07 Javascript
http通过StreamingHttpResponse完成连续的数据传输长链接方式
2022/02/12 Python
Java实现HTML转为Word的示例代码
2022/06/28 Java/Android