plt.subplots()详解

plt.subplots()详解

一、通过ax控制子图
1、单行单列

# 定义fig
fig = plt.figure()
# 建立子图
ax = fig.subplots(2,1)    # 2*1
# 第一个图为
ax[0].plot([1,2], [3,4])
# 第二个图为
ax[1].plot([1,2], [3,4])

2、多行多列

# 定义fig
fig = plt.figure()
# 建立子图
ax = fig.subplots(2,2)    # 2*2
# 第一个图为
ax[0,1].plot([1,2], [3,4])
# 第二个图为
ax[0,1].plot([1,2], [3,4])
# 第三个图为
ax[1,0].plot([1,2], [3,4])
# 第四个图为
ax[1,1].plot([1,2], [3,4])

二、通过plt控制子图

fig, ax = plt.subplots(1,3)

你可能感兴趣的:(plt.subplots()详解)