10
10
Basic annotation
11
11
================
12
12
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
16
16
:func: `~matplotlib.Axes.annotate ` method provides helper functionality
17
17
to make annotations easy. In an annotation, there are two points to
18
18
consider: the location being annotated represented by the argument
@@ -55,7 +55,7 @@ For physical coordinate systems (points or pixels) the origin is the
55
55
however, the origin is from the (right, top) of the figure or axes,
56
56
analogous to negative indexing of sequences.
57
57
58
- Optionally, you can specify arrow properties which draws an arrow
58
+ Optionally, you can specify arrow properties for adding an arrow
59
59
from the text to the annotated point by giving a dictionary of arrow
60
60
properties in the optional keyword argument ``arrowprops ``.
61
61
@@ -79,8 +79,8 @@ In the example below, the ``xy`` point is in native coordinates
79
79
(theta, radius) space. The text in this example is placed in the
80
80
fractional figure coordinate system. :class: `matplotlib.text.Text `
81
81
keyword 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.
84
84
85
85
.. plot :: pyplots/annotation_polar.py
86
86
:include-source:
0 commit comments