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

matplotlib笔记(subplot)

时间:2017-12-09 22:20:39      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:com   blog   gen   数据   技术   images   笔记   list   pre   

import matplotlib.plot as plt
fig = plt.figure()
ax1 = fig.add_subplot(4,3,1)
ax2 = fig.add_subplot(4,3,6)
plt.show()

建立一个包含4行3列个子图的figure,add_subplot()可以指定放置位置,具体关系如下:

技术分享图片

fig = plt.figure(figsize=(10,6))

figure()中可包含参数figsize=(10,6),10表示figure对象的横向长度,6表示纵向长度。

 

ax1.plot(x_list,y_list,c=color)#数据与线条颜色

 

ax1.legend(loc=best)#添加图例

 

matplotlib笔记(subplot)

标签:com   blog   gen   数据   技术   images   笔记   list   pre   

原文地址:http://www.cnblogs.com/imageSet/p/8012751.html

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