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 (proplot.axes.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[5]  # the subplot in the second row, third column
>>> axs[1, 2]  # the subplot in the second row, third column
>>> axs[:, 0]  # a SubplotGrid containing the subplots in the first column