Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notebooks/04.08-Multiple-Subplots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"The most basic method of creating an axes is to use the ``plt.axes`` function.\n",
"As we've seen previously, by default this creates a standard axes object that fills the entire figure.\n",
"``plt.axes`` also takes an optional argument that is a list of four numbers in the figure coordinate system.\n",
"These numbers represent ``[bottom, left, width, height]`` in the figure coordinate system, which ranges from 0 at the bottom left of the figure to 1 at the top right of the figure.\n",
"These numbers represent ``[left, bottom, width, height]`` in the figure coordinate system, which ranges from 0 at the bottom left of the figure to 1 at the top right of the figure.\n",
"\n",
"For example, we might create an inset axes at the top-right corner of another axes by setting the *x* and *y* position to 0.65 (that is, starting at 65% of the width and 65% of the height of the figure) and the *x* and *y* extents to 0.2 (that is, the size of the axes is 20% of the width and 20% of the height of the figure):"
]
Expand Down