如何在共享轴的子图上消除额外的空白区域?

时间:2016-09-08 01:14:33

标签: python matplotlib

我正在使用python 3.5.1和matplotlib 1.5.1创建一个图,它有两个子图(并排)和一个共享的Y轴。示例输出图像如下所示:

Sample Image

注意每组轴顶部和底部的额外空白区域。尽我所能,我似乎无法摆脱它。该图的总体目标是在左侧有一个瀑布式图,右侧有一个共享的Y轴。

以下是重现上图的一些示例代码。

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
%matplotlib inline

# create some X values

periods = np.linspace(1/1440, 1, 1000)

# create some Y values (will be datetimes, not necessarily evenly spaced 
# like they are in this example)

day_ints = np.linspace(1, 100, 100)
days = pd.to_timedelta(day_ints, 'D') + pd.to_datetime('2016-01-01')

# create some fake data for the number of points 
points = np.random.random(len(day_ints))

# create some fake data for the color mesh

Sxx = np.random.random((len(days), len(periods)))

# Create the plots

fig = plt.figure(figsize=(8, 6))

# create first plot

ax1 = plt.subplot2grid((1,5), (0,0), colspan=4)
im = ax1.pcolormesh(periods, days, Sxx, cmap='viridis', vmin=0, vmax=1)
ax1.invert_yaxis()
ax1.autoscale(enable=True, axis='Y', tight=True)

# create second plot and use the same y axis as the first one

ax2 = plt.subplot2grid((1,5), (0,4), sharey=ax1)    
ax2.scatter(points, days)
ax2.autoscale(enable=True, axis='Y', tight=True)

# Hide the Y axis scale on the second plot
plt.setp(ax2.get_yticklabels(), visible=False)    
#ax1.set_adjustable('box-forced') 
#ax2.set_adjustable('box-forced')

fig.colorbar(im, ax=ax1)

正如您在注释掉的代码中所看到的,我已尝试了多种方法,如https://github.com/matplotlib/matplotlib/issues/1789/Matplotlib: set axis tight only to x or y axis等帖子所示。

一旦删除第二个subplot2grid调用的sharey=ax1部分,问题就会消失,但是我也没有共同的Y轴。

1 个答案:

答案 0 :(得分:1)

自动缩放往往会为数据添加缓冲区,以便所有数据点都可以轻松查看,而不会被轴部分切断。

变化:

ax1.autoscale(enable=True, axis='Y', tight=True)

为:

ax1.set_ylim(days.min(),days.max())

ax2.autoscale(enable=True, axis='Y', tight=True)

为:

ax2.set_ylim(days.min(),days.max())

获得:

enter image description here