You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: notebooks/04.08-Multiple-Subplots.ipynb
+1-1
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@
59
59
"The most basic method of creating an axes is to use the ``plt.axes`` function.\n",
60
60
"As we've seen previously, by default this creates a standard axes object that fills the entire figure.\n",
61
61
"``plt.axes`` also takes an optional argument that is a list of four numbers in the figure coordinate system.\n",
62
-
"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",
62
+
"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",
63
63
"\n",
64
64
"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):"
0 commit comments