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

matplotlib中在for中画出多张图

时间:2018-01-14 19:33:40      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:alt   range   title   otl   tick   import   .sh   sub   http   

import matplotlib.pyplot as plt
import numpy as np


fig, axes = plt.subplots(2, 2)
def showim():
    for i in range(2):
        for j in range(2):
            axes[i,j].plot(np.random.randint(10,size=10))
            # 为每个子图添加标题
            axes[i,j].set_title("picture "+str(i)+" "+str(j))
            fig.tight_layout()
            # 为每个子图去掉坐标轴刻度
            axes[i,j].set_xticks([])
            axes[i,j].set_yticks([])

showim()
plt.show()

 

技术分享图片

 

matplotlib中在for中画出多张图

标签:alt   range   title   otl   tick   import   .sh   sub   http   

原文地址:https://www.cnblogs.com/cymwill/p/8283850.html

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