python如何画出多个独立的图片_python—networkx:在一张图中画出多个子图

通过plt.subplot能够在一张图中画出多个子图

#coding: utf-8

#!/usr/bin/env python

"""

Draw a graph with matplotlib.

You must have matplotlib for this to work.

"""

__author__ = """Aric Hagberg (hagberg@lanl.gov)"""

# Copyright (C) 2004-2008

# Aric Hagberg

# Dan Schult

# Pieter Swart

# All rights reserved.

# BSD license.

#raise的使用要求这一步必须运行

try:

import matplotlib.pyplot as plt

except:

raise

import networkx as nx

#用grid_2d_graph()生成一个16个节点的网格图

G=nx.grid_2d_graph(4,4) #4x4 grid

pos=nx.spring_layout(G,iterations=100)

#開始画各个小图

plt.subplot(221)

nx.draw(G,pos,font_size=8)

plt.subplot(222)

nx.draw(G,pos,node_color='k',node_size=0,with_labels=False)

plt.subplot(223)

nx.draw(G,pos,node_color='g',node_size=250,with_labels=False,width=6)

#最后一幅子图转为有向图

plt.subplot(224)

H=G.to_directed()

nx.draw(H,pos,node_color='b',node_size=20,with_labels=False)

plt.savefig("four_grids.png")

plt.show()

20150819103548601

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值