mpl_toolkits.axes_grid1.axes_grid.
ImageGrid
(fig, rect, nrows_ncols, ngrids=None, direction='row', axes_pad=0.02, add_all=True, share_all=False, aspect=True, label_mode='L', cbar_mode=None, cbar_location='right', cbar_pad=None, cbar_size='5%', cbar_set_cax=True, axes_class=None)[source]¶Bases: mpl_toolkits.axes_grid1.axes_grid.Grid
A class that creates a grid of Axes. In matplotlib, the axes location (and size) is specified in the normalized figure coordinates. This may not be ideal for images that needs to be displayed with a given aspect ratio. For example, displaying images of a same size with some fixed padding between them cannot be easily done in matplotlib. ImageGrid is used in such case.
Parameters: | fig :
rect : (float, float, float, float) or int
direction : {"row", "column"}, default: "row" axes_pad : float or (float, float), default: 0.02
add_all : bool, default: True share_all : bool, default: False aspect : bool, default: True label_mode : {"L", "1", "all"}, default: "L"
cbar_mode : {"each", "single", "edge", None }, default: None cbar_location : {"left", "right", "bottom", "top"}, default: "right" cbar_pad : float, default: None cbar_size : size specification (see cbar_set_cax : bool, default: True
axes_class : a type that is a subclass of |
---|