1010Basic annotation
1111================
1212
13- The uses of the basic :func: `~matplotlib.pyplot.text ` command above
14- place text at an arbitrary position on the Axes. A common use case of
15- text is to annotate some feature of the plot, and the
13+ The uses of the basic :func: `~matplotlib.pyplot.text ` will place text
14+ at an arbitrary position on the Axes. A common use case of text is to
15+ annotate some feature of the plot, and the
1616:func: `~matplotlib.Axes.annotate ` method provides helper functionality
1717to make annotations easy. In an annotation, there are two points to
1818consider: the location being annotated represented by the argument
@@ -55,7 +55,7 @@ For physical coordinate systems (points or pixels) the origin is the
5555however, the origin is from the (right, top) of the figure or axes,
5656analogous to negative indexing of sequences.
5757
58- Optionally, you can specify arrow properties which draws an arrow
58+ Optionally, you can specify arrow properties for adding an arrow
5959from the text to the annotated point by giving a dictionary of arrow
6060properties in the optional keyword argument ``arrowprops ``.
6161
@@ -79,8 +79,8 @@ In the example below, the ``xy`` point is in native coordinates
7979(theta, radius) space. The text in this example is placed in the
8080fractional figure coordinate system. :class: `matplotlib.text.Text `
8181keyword args like ``horizontalalignment ``, ``verticalalignment `` and
82- ``fontsize are passed from the `~matplotlib.Axes.annotate` to the
83- ``Text `` instance
82+ ``fontsize `` are passed from `~matplotlib.Axes.annotate ` to the
83+ ``Text `` instance.
8484
8585.. plot :: pyplots/annotation_polar.py
8686 :include-source:
0 commit comments