Matplotlib多个imshow共享一个轴

问题描述 投票:0回答:2

我正在一个接一个地绘制5个imshows,如下所示。 enter image description here

我使用下面的代码生成上面的图。

fig = plt.figure()
ax1 = plt.subplot(511) 
ax2 = plt.subplot(512)
ax3 = plt.subplot(513)
ax4 = plt.subplot(514)
ax5 = plt.subplot(515)
ax1.imshow(data1)
ax2.imshow(data2)
ax3.imshow(data3)
ax4.imshow(data4)
ax5.imshow(data5)
plt.show()

我想知道是否有办法让所有的imshows共享x轴(并将它们一个在另一个之下,没有白色间隙)

谢谢。

python matplotlib imshow
2个回答
1
投票

可以使用subplots_adjust方法更改子图之间的间距。更多信息可以在official documentation here找到。

以下是删除两个子图之间的垂直空间的示例:

import numpy as np
import matplotlib.pyplot as plt

plt.subplots_adjust(left=0.125,
                    bottom=0.1,
                    right=0.9,
                    top=0.9,
                    wspace=0.2,
                    hspace=0)

x1 = np.linspace(0.0, 5.0)
x2 = np.linspace(0.0, 2.0)

y1 = np.cos(2 * np.pi * x1) * np.exp(-x1)
y2 = np.cos(2 * np.pi * x2)

plt.subplot(2, 1, 1)
plt.plot(x1, y1, 'o-')
plt.title('A tale of 2 subplots')
plt.ylabel('Damped oscillation')

plt.subplot(2, 1, 2)
plt.plot(x2, y2, '.-')
plt.xlabel('time (s)')
plt.ylabel('Undamped')

plt.show()

输出:

output of two subplots without vertical space


0
投票

添加到arsho的答案,您还可以使用参数share和/或sharey chen创建子图,使不同的子图共享轴。

这样的事情对你有用:

fig = plt.figure()
ax1 = plt.subplot(511) 
ax2 = plt.subplot(512, sharex = ax1)
ax3 = plt.subplot(513, sharex = ax1)
ax4 = plt.subplot(514, sharex = ax1)
ax5 = plt.subplot(515, sharex = ax1)
ax1.imshow(data1)
ax2.imshow(data2)
ax3.imshow(data3)
ax4.imshow(data4)
ax5.imshow(data5)
plt.show()
© www.soinside.com 2019 - 2024. All rights reserved.