SubplotGrid.__getitem__

SubplotGrid.__getitem__(key)[source]

Get an axes.

Parameters

key (int, slice, or 2-tuple) – The index. If 1D then the axes in the corresponding sublist are returned. If 2D then the axes that intersect the corresponding gridspec slots are returned.

Returns

axs (Axes or SubplotGrid) – The axes. If the index included slices then another SubplotGrid is returned.

Example

>>> import proplot as pplt
>>> fig, axs = pplt.subplots(nrows=3, ncols=3)
>>> axs[3]  # the subplots in the second row, first column
>>> axs[1, 2]  # the subplots in the second row, third column
>>> axs[:, 0]  # a grid of subplots in the first column