@@ -165,17 +165,17 @@ The :func:`~matplotlib.pyplot.figure` command here is optional because
165165``figure(1) `` will be created by default, just as a ``subplot(111) ``
166166will be created by default if you don't manually specify an axes. The
167167:func: `~matplotlib.pyplot.subplot ` command specifies ``numrows,
168- numcols, fignum `` where ``fignum `` ranges from 1 to
169- ``numrows*numcols ``. The commas in the ``subplot `` command are optional
170- if ``numrows*numcols<10 ``. So ``subplot(211) `` is identical to
171- ``subplot(2,1,1) ``. You can create an arbitrary number of subplots
168+ numcols, fignum `` where ``fignum `` ranges from 1 to
169+ ``numrows*numcols ``. The commas in the ``subplot `` command are
170+ optional if ``numrows*numcols<10 ``. So ``subplot(211) `` is identical
171+ to ``subplot(2,1,1) ``. You can create an arbitrary number of subplots
172172and axes. If you want to place an axes manually, ie, not on a
173173rectangular grid, use the :func: `~matplotlib.pyplot.axes ` command,
174174which allows you to specify the location as ``axes([left, bottom,
175175width, height]) `` where all values are in fractional (0 to 1)
176176coordinates. See :ref: `pylab_examples-axes_demo ` for an example of
177- placing axes manually and :ref: `pylab_examples-line_styles ` for an example
178- with lots-o-subplots.
177+ placing axes manually and :ref: `pylab_examples-line_styles ` for an
178+ example with lots-o-subplots.
179179
180180
181181You can create multiple figures by using multiple
@@ -267,6 +267,6 @@ these arguments are ``(x,y)`` tuples.
267267In this basic example, both the ``xy `` (arrow tip) and ``xytext ``
268268locations (text location) are in data coordinates. There are a
269269variety of other coordinate systems one can choose -- see
270- :ref: `annotations-tutorial ` and :ref: `plotting-guide-annotation `
271- for details. More examples can be found
272- in :ref: `pylab_examples-annotation_demo `.
270+ :ref: `annotations-tutorial ` and :ref: `plotting-guide-annotation ` for
271+ details. More examples can be found in
272+ :ref: `pylab_examples-annotation_demo `.
0 commit comments