码迷,mamicode.com
首页 > 其他好文 > 详细

Matplotlib 基础绘图

时间:2015-08-13 12:01:45      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

1. 建立图:利用子图 (subplot) 或坐标轴 (axes)

### gca自动生成:单图,简单,不可调 ###
ax = gca()

### 利用子图:简单易用,不可重叠 ###
ax1 = subplot(2,2,1)
ax2 = subplot(2,2,2)
ax3 = subplot(2,2,3)
ax4 = subplot(2,2,4)
# subplot(row,column,n)
# 其中,row 为 行数
# column 为 列数
# n 为第几张图,位置如下:
#       ┌────┬────┐
#       │ax1 │ax2 │
#       ├────┼────┤
#       │ax3 │ax4 │
#       └────┴────┘
#

### 利用坐标轴:复杂,可控,可堆叠 ###
ax = axes([0.1,0.1,0.8,0.8])

 

Matplotlib 基础绘图

标签:

原文地址:http://www.cnblogs.com/magisquare/p/4726592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!