{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "\n.. redirect-from:: /tutorials/intermediate/gridspec\n.. redirect-from:: /tutorials/intermediate/arranging_axes\n\n\n# Arranging multiple Axes in a Figure\n\nOften more than one Axes is wanted on a figure at a time, usually\norganized into a regular grid. Matplotlib has a variety of tools for\nworking with grids of Axes that have evolved over the history of the library.\nHere we will discuss the tools we think users should use most often, the tools\nthat underpin how Axes are organized, and mention some of the older tools.\n\n
Matplotlib uses *Axes* to refer to the drawing area that contains\n data, x- and y-axis, ticks, labels, title, etc. See `figure_parts`\n for more details. Another term that is often used is \"subplot\", which\n refers to an Axes that is in a grid with other Axes objects.