我需要在图中添加两个子图。一个子图需要大约是第二个(相同高度)的三倍。我使用GridSpec
和colspan
参数完成了此操作,但我想使用figure
执行此操作,以便保存为PDF。我可以使用构造函数中的figsize
参数调整第一个数字,但是如何更改第二个图的大小?
答案 0 :(得分:289)
另一种方法是使用subplots
函数并将宽度比率传递给gridspec_kw
:
import numpy as np
import matplotlib.pyplot as plt
# generate some data
x = np.arange(0, 10, 0.2)
y = np.sin(x)
# plot it
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})
a0.plot(x, y)
a1.plot(y, x)
f.tight_layout()
f.savefig('grid_figure.pdf')
答案 1 :(得分:199)
您可以使用gridspec
和figure
:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import gridspec
# generate some data
x = np.arange(0, 10, 0.2)
y = np.sin(x)
# plot it
fig = plt.figure(figsize=(8, 6))
gs = gridspec.GridSpec(1, 2, width_ratios=[3, 1])
ax0 = plt.subplot(gs[0])
ax0.plot(x, y)
ax1 = plt.subplot(gs[1])
ax1.plot(y, x)
plt.tight_layout()
plt.savefig('grid_figure.pdf')
答案 2 :(得分:26)
可能最简单的方法是使用Customizing Location of Subplot Using GridSpec中描述的subplot2grid
。
ax = plt.subplot2grid((2, 2), (0, 0))
等于
import matplotlib.gridspec as gridspec
gs = gridspec.GridSpec(2, 2)
ax = plt.subplot(gs[0, 0])
所以bmu的例子变成了:
import numpy as np
import matplotlib.pyplot as plt
# generate some data
x = np.arange(0, 10, 0.2)
y = np.sin(x)
# plot it
fig = plt.figure(figsize=(8, 6))
ax0 = plt.subplot2grid((1, 3), (0, 0), colspan=2)
ax0.plot(x, y)
ax1 = plt.subplot2grid((1, 3), (0, 2))
ax1.plot(y, x)
plt.tight_layout()
plt.savefig('grid_figure.pdf')
答案 3 :(得分:25)
我使用pyplot
的{{1}}对象手动调整尺寸而不使用axes
:
GridSpec
答案 4 :(得分:4)
简单来说,不用gridspec
也可以做不同尺寸的子图:
plt.figure(figsize=(12, 6))
ax1 = plt.subplot(2,3,1)
ax2 = plt.subplot(2,3,2)
ax3 = plt.subplot(2,3,3)
ax4 = plt.subplot(2,1,2)
axes = [ax1, ax2, ax3, ax4]