Python subplot 绘画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python subplot 绘画相关的知识,希望对你有一定的参考价值。

  利用matplotlib 画图模块,汇至子图

# -*- coding: utf-8 -*-


#子图 subplot() 行、列,当前所在区域

import matplotlib.pylab as mtp
import numpy.random as nprd

#汇3个图,上面2个,下面一个
#左上角图
mtp.subplot(2,2,1)
x1=nprd.random_integers(10,20,50)  #生成随机值(最小值、最大值,个数)
y1=nprd.random_integers(10,30,50)
mtp.plot(x1,y1,‘o‘)
mtp.title("open widy") #设置图名

#右上角图
mtp.subplot(2,2,2)
x2=[1,3,5,7,9]
mtp.hist(x2,color=‘b‘)
mtp.title("spy der")

#下部图
mtp.subplot(2,1,2)
x3=nprd.normal(50,10,1000) #生成正态分布随机值(均值、标准差,个数)
y3=nprd.normal(100,20,1000)
mtp.plot(x3,y3,‘-‘)
mtp.title("amt tol")
mtp.show()

结果如图:

技术分享

 

以上是关于Python subplot 绘画的主要内容,如果未能解决你的问题,请参考以下文章

python, 如何在subplot在总的图画上面加title?

用python实现你的绘画梦想

国内有没有和Disco diffusion差不多的AI绘画软件?

如何为 python kivy 绘画应用程序添加清除按钮

10个Python绘画表白代码内附源码,再不收藏你只能单身了

在 python (Matplotlib) 中使用 subplot 和 imshow 时删除白色边框