gpt4 book ai didi

python - 如何使用 pyplot/gridspec 增加单个子图的大小?

转载 作者:行者123 更新时间:2023-11-28 22:22:51 26 4
gpt4 key购买 nike

我试图在 6x4 网格中绘制 23 个图形,其中一个图形占其他图形宽度的两倍。我正在使用 gridspec,我当前的代码是:

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import gridspec

x = np.arange(0, 7, 0.01)

fig = plt.figure(figsize=(6, 4))
gs = gridspec.GridSpec(nrows=6, ncols=4)

for n in range(22):
ax = fig.add_subplot(gs[n])
ax.plot(x, np.sin(0.2*n*x))

corrax = fig.add_subplot(gs[22])
fig.tight_layout()
plt.show()

这会产生以下内容:

Figure grid

我想增加底行最右边绘图的宽度,以便它占用该行中的剩余空间。有办法实现吗?

最佳答案

您可以使用切片从 gridspec 中选择多个位置,例如gs[22:24]

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import gridspec

x = np.arange(0, 7, 0.01)

fig = plt.figure(figsize=(6, 4))
gs = gridspec.GridSpec(nrows=6, ncols=4)

for n in range(22):
ax = fig.add_subplot(gs[n])
ax.plot(x, np.sin(0.2*n*x))

corrax = fig.add_subplot(gs[22:24])
corrax.plot(x,np.sin(0.2*22*x), color="crimson", lw=3)
fig.tight_layout()
plt.show()

enter image description here

您还可以对 gridspec 进行二维切片。例如。要创建一个 3x3 网格并使右下角的绘图跨越两列和两行,您可以像 gs[1:,1:] 那样切片。

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import gridspec

x = np.arange(0, 7, 0.01)

fig = plt.figure(figsize=(6, 4))
gs = gridspec.GridSpec(nrows=3, ncols=3)

for n in range(3):
ax = fig.add_subplot(gs[0,n])
ax.plot(x, np.sin(0.2*n*x))
if n !=0:
ax = fig.add_subplot(gs[n,0])
ax.plot(x, np.sin(0.2*n*x))

corrax = fig.add_subplot(gs[1:,1:])
corrax.plot(x,np.sin(0.2*22*x), color="crimson", lw=3)
fig.tight_layout()
plt.show()

enter image description here

关于python - 如何使用 pyplot/gridspec 增加单个子图的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47435055/

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