在fig.add_subplot(111)中的参数是什么意思?

有时我会遇到这样的代码:

import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
fig = plt.figure()
fig.add_subplot(111)
plt.scatter(x, y)
plt.show()

生产:

由包含的代码生成的示例plot

我一直在疯狂地阅读文档,但我找不到111的解释。有时我看到212

fig.add_subplot()的参数是什么意思?

466825 次浏览

这些是编码为单个整数的子图网格参数。例如,“111”表示“1x1格,第一个子图”,“234”表示“2x3格,第四个子图”。

add_subplot(111)的替代形式是add_subplot(1, 1, 1)

康斯坦丁的答案是正确的,但更多的背景知识,这种行为继承自Matlab。

Matlab行为在Matlab文档的图设置-每个图显示多个图部分中进行了解释。

subplot(m,n,i)将图形窗口分解为m × n的小矩阵 Subplots并为当前plot选择ithe子plot。故事情节 编号沿着图形窗口的第一行,然后是第二行

我认为这可以用下面的图片来解释:

enter image description here

要初始化上面的代码,可以输入:

import matplotlib.pyplot as plt
fig = plt.figure()
fig.add_subplot(221)   #top left
fig.add_subplot(222)   #top right
fig.add_subplot(223)   #bottom left
fig.add_subplot(224)   #bottom right
plt.show()

我的解决方案是

fig = plt.figure()
fig.add_subplot(1, 2, 1)   #top and bottom left
fig.add_subplot(2, 2, 2)   #top right
fig.add_subplot(2, 2, 4)   #bottom right
plt.show()

2x2 grid with 1 and 3 merge

# EYZ0

  • ROW=行数
  • COLUMN=列数
  • POSITION=所绘制图形的位置

< em > < / em >例子

`fig.add_subplot(111)` #There is only one subplot or graph
`fig.add_subplot(211)`  *and*  `fig.add_subplot(212)`

总共有2行1列,因此可以绘制2个子图。它的位置是1号。总共有2行1列,因此可以绘制2个子图。它的位置是2号

# EYZ0

import matplotlib.pyplot as plt
plt.figure(figsize=(8,8))
plt.subplot(3,2,1)
plt.subplot(3,2,3)
plt.subplot(3,2,5)
plt.subplot(2,2,2)
plt.subplot(2,2,4)

第一个代码在一个有3行2列的布局中创建了第一个子图。

第一列中的三个图形表示这3行。第二个图在同一列中位于第一个图的下方,依此类推。

最后两个图有参数(2, 2),表示第二列只有两行,位置参数按行移动。

add_subplot ()方法有几个调用签名:

  1. # EYZ0
  2. # EYZ0
  3. # EYZ0
  4. add_subplot() <——从3.1.0开始

调用1和2:

调用1和2彼此实现相同的功能(在一定限度内,将在下面解释)。可以把它们看作是首先用前两个数字 (2x2, 1x8, 3x4等)指定网格布局,例如:

f.add_subplot(3,4,1)
# is equivalent to:
f.add_subplot(341)

两者都产生了3行4列的(3 x 4 = 12)子图排列。每个调用中的第三个数字表示从1在左上角,向右递增开始返回哪个轴对象。

这段代码说明了使用调用2的限制:

#!/usr/bin/env python3
import matplotlib.pyplot as plt


def plot_and_text(axis, text):
'''Simple function to add a straight line
and text to an axis object'''
axis.plot([0,1],[0,1])
axis.text(0.02, 0.9, text)


f = plt.figure()
f2 = plt.figure()


_max = 12
for i in range(_max):
axis = f.add_subplot(3,4,i+1, fc=(0,0,0,i/(_max*2)), xticks=[], yticks=[])
plot_and_text(axis,chr(i+97) + ') ' + '3,4,' +str(i+1))


# If this check isn't in place, a
# ValueError: num must be 1 <= num <= 15, not 0 is raised
if i < 9:
axis = f2.add_subplot(341+i, fc=(0,0,0,i/(_max*2)), xticks=[], yticks=[])
plot_and_text(axis,chr(i+97) + ') ' + str(341+i))


f.tight_layout()
f2.tight_layout()
plt.show()

subplots

你可以看到,使用在LHS上呼叫1你可以返回任何轴对象,但是使用在RHS上呼叫2你只能返回索引= 9的渲染子图j), k)和l)不可访问使用这个调用。

例如,它说明了从文档中可以看到:

Pos是一个三位数的整数,第一个数字是行数,第二个数字是列数,第三个数字是子图的索引。例如,fig.add_subplot(235)与fig.add_subplot(2,3,5)相同。


叫3

在极少数情况下,可以使用单个参数调用add_subplot,即在当前图中已经创建但不在图的轴列表中的子图轴实例。


调用4(自3.1.0起):

如果没有传递位置参数,默认为(1,1,1)。

例如,在问题中重现调用fig.add_subplot(111)。这实际上设置了一个1 x 1的子图网格,并返回网格中的第一个(也是唯一的)轴对象。

fig.add_subplot(111)就像fig.add_subplot(1, 1, 1)111只是子图网格参数,但编码为单个整数。

要选择n * m网格中的k次要情节,您可以这样做:fig.add_subplot(n, m, k)