gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 12:03:30 28 4
gpt4 key购买 nike

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

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()

产生:

Example plot produced by the included code

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

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

最佳答案

我认为这最好用下图来解释:

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()

关于python - fig.add_subplot(111) 中的参数是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3584805/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com