matpotlib 画子图

这篇博客介绍了如何使用matplotlib库在Python中创建子图。通过实例展示了subplot函数、subplot2grid方法以及GridSpec类的用法,包括数据缩放、子图定位和共享坐标轴等功能,帮助读者理解并实现复杂的图形布局。
摘要由CSDN通过智能技术生成

最简单方式创建子图

import numpy as np
from matplotlib import pyplot as plt

np.random.seed(123456)
# 随机生成1-20的随机数
x = np.random.randint(1, 20, 20)

xmax = x.max()
xmin = x.min()
xmax, xmin
# 数据缩放到0-1的 区间
xx = (x - xmin) / (xmax - xmin)
# 2,1,1,  代表 画子图 2行1列第一 个位置
# 参数中间的逗号可以免掉不写,211
plt.subplot(211)
plt.plot(x)
plt.subplot(2,1,2)
plt.plot(y)

plt.show()

plt_1.png

创建子图

from matplotlib import pyplot as plt
# 第一个子图 将 整个图分成 2行1列,占据第1个位置
plt.subplot(211)
plt.plot([1,2],[3,4])
# 第二个子图 将整个图分成 2行3列 放在第4个位置,也就是2行第1位
plt.subplot(234)
plt.plot([1,2],[3,4])

plt.subplot(235)
plt.plot([1,2],[3,4])

plt.subplot(236)
plt.plot([1,2],[3,4])

plt.show()

plt4.png

在网格图中指定位置创建子图

from matplotlib import pyplot as plt
# 背景颜色 白色
plt.figure(facecolor='white')
# shape: 网格形状 2行3列 一共6个单元的网格
# loc: 子图要方的位置,[0,0] 表示第一个格子
sub = plt.subplot2grid(shape=[2,3],loc=[0,0],colspan=2)
sub.plot([1,2,3])
sub1 = plt.subplot2grid([2,3],[1,0])
sub1.plot([1,2,3])
sub2 = plt.subplot2grid([2,3],[1,1])
sub2.plot([1,2,3])
sub3 = plt.subplot2grid([2,3],[1,2])
sub3.plot([1,2,3])

plt.show()

plt5.png

切片创建子图

from matplotlib import pyplot as plt
from matplotlib import gridspec as gs
plt.figure(facecolor='white')
gs = gs.GridSpec(3,3)
plt.subplot(gs[0,2])
plt.subplot(gs[1,0])
plt.subplot(gs[2,1:])
plt.show()

plt6.png

subplots 创建子图,共享x,y

from matplotlib import pyplot as plt
# 创建子图 2行3列,共享x ,y 轴坐标
figure,subs = plt.subplots(nrows=2,ncols=3,sharex=True,sharey=True)
figure.set_facecolor('white')
subs[0,0].plot([1,2,3])
subs[1,1].plot([1,2,3])
plt.show()

plt7.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值