避免在xarray facet网格图中重叠colorbar

时间:2018-04-03 01:00:22

标签: python xarray

   import xarray as xr     
   import cartopy.crs as ccrs


    USA_PROJ = ccrs.AlbersEqualArea(central_longitude=-97., central_latitude=38.)
    g_simple = ds_by_month.t2m.plot(x='longitude',
                                    y='latitude',
                                    col='month',
                                    col_wrap=6,
                                    aspect=ds.dims['longitude'] / ds.dims['latitude'],
                                    subplot_kws=dict(projection=USA_PROJ),
                                    add_colorbar=False,
                                    transform=ccrs.PlateCarree())
    g_simple.add_colorbar(orientation='horizontal')
    for ax in g_simple.axes.ravel():
        ax.coastlines()
        ax.set_extent([-121, -72, 22.5, 50])

    plt.tight_layout()
    plt.show()

在运行上面的代码时,我得到了foll。数字: enter image description here

如何确保色条与图形重叠?即使我使用xarray默认颜色条,也会发生重叠。

1 个答案:

答案 0 :(得分:9)

您可以为颜色栏指定一组轴,并将“bottom”值设置为负值,使其超出边界框,或者使用关键字参数设置subplots_adjust函数(即hspace = 2等) 。

以下是随机数据的示例(从matplotlib subplots example修改):

import numpy as np
import matplotlib.pyplot as plt

fig, axes = plt.subplots(nrows=2, ncols=6, figsize=(15,5))
for ax in axes.flat:
    im = ax.imshow(np.random.random((10,10)), vmin=0, vmax=1)

# color bar
fig.subplots_adjust(right=0.875) #also try using kwargs bottom, top, or hspace 
cbar_ax = fig.add_axes([0.1, -0.1, .8, .05]) #left, bottom, width, height
fig.colorbar(im, cax=cbar_ax, orientation="horizontal")

plt.show()

enter image description here