@@ -96,17 +96,14 @@ def inset_locator(ax, renderer):
9696
9797class Axes (_AxesBase ):
9898 """
99- The :class:`Axes` contains most of the figure elements:
100- :class:`~matplotlib.axis.Axis`, :class:`~matplotlib.axis.Tick`,
101- :class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.text.Text`,
102- :class:`~matplotlib.patches.Polygon`, etc., and sets the
103- coordinate system.
104-
105- The :class:`Axes` instance supports callbacks through a callbacks
106- attribute which is a :class:`~matplotlib.cbook.CallbackRegistry`
107- instance. The events you can connect to are 'xlim_changed' and
108- 'ylim_changed' and the callback will be called with func(*ax*)
109- where *ax* is the :class:`Axes` instance.
99+ The `Axes` contains most of the figure elements: `~.axis.Axis`,
100+ `~.axis.Tick`, `~.lines.Line2D`, `~.text.Text`, `~.patches.Polygon`, etc.,
101+ and sets the coordinate system.
102+
103+ The `Axes` instance supports callbacks through a callbacks attribute which
104+ is a `~.cbook.CallbackRegistry` instance. The events you can connect to
105+ are 'xlim_changed' and 'ylim_changed' and the callback will be called with
106+ func(*ax*) where *ax* is the `Axes` instance.
110107
111108 Attributes
112109 ----------
@@ -5967,10 +5964,9 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
59675964
59685965 .. note::
59695966
5970- ``pcolormesh()`` is similar to :func:`~Axes.pcolor`. It's much
5971- faster and preferred in most cases. For a detailed discussion on
5972- the differences see
5973- :ref:`Differences between pcolor() and pcolormesh()
5967+ `~Axes.pcolormesh` is similar to `~Axes.pcolor`. It's much faster
5968+ and preferred in most cases. For a detailed discussion on the
5969+ differences see :ref:`Differences between pcolor() and pcolormesh()
59745970 <differences-pcolor-pcolormesh>`.
59755971
59765972 Parameters
@@ -7951,34 +7947,23 @@ def violinplot(self, dataset, positions=None, vert=True, widths=0.5,
79517947 list of the corresponding collection instances created. The
79527948 dictionary has the following keys:
79537949
7954- - ``bodies``: A list of the
7955- :class:`matplotlib.collections.PolyCollection` instances
7956- containing the filled area of each violin.
7950+ - ``bodies``: A list of the `~.collections.PolyCollection`
7951+ instances containing the filled area of each violin.
79577952
7958- - ``cmeans``: A
7959- :class:`matplotlib.collections.LineCollection` instance
7960- created to identify the mean values of each of the
7961- violin's distribution.
7953+ - ``cmeans``: A `~.collections.LineCollection` instance that marks
7954+ the mean values of each of the violin's distribution.
79627955
7963- - ``cmins``: A
7964- :class:`matplotlib.collections.LineCollection` instance
7965- created to identify the bottom of each violin's
7966- distribution.
7956+ - ``cmins``: A `~.collections.LineCollection` instance that marks
7957+ the bottom of each violin's distribution.
79677958
7968- - ``cmaxes``: A
7969- :class:`matplotlib.collections.LineCollection` instance
7970- created to identify the top of each violin's
7971- distribution.
7959+ - ``cmaxes``: A `~.collections.LineCollection` instance that marks
7960+ the top of each violin's distribution.
79727961
7973- - ``cbars``: A
7974- :class:`matplotlib.collections.LineCollection` instance
7975- created to identify the centers of each violin's
7976- distribution.
7962+ - ``cbars``: A `~.collections.LineCollection` instance that marks
7963+ the centers of each violin's distribution.
79777964
7978- - ``cmedians``: A
7979- :class:`matplotlib.collections.LineCollection` instance
7980- created to identify the median values of each of the
7981- violin's distribution.
7965+ - ``cmedians``: A `~.collections.LineCollection` instance that
7966+ marks the median values of each of the violin's distribution.
79827967
79837968 Notes
79847969 -----
@@ -8057,35 +8042,23 @@ def violin(self, vpstats, positions=None, vert=True, widths=0.5,
80578042 list of the corresponding collection instances created. The
80588043 dictionary has the following keys:
80598044
8060- - ``bodies``: A list of the
8061- :class:`matplotlib.collections.PolyCollection` instances
8062- containing the filled area of each violin.
8063-
8064- - ``cmeans``: A
8065- :class:`matplotlib.collections.LineCollection` instance
8066- created to identify the mean values of each of the
8067- violin's distribution.
8045+ - ``bodies``: A list of the `~.collections.PolyCollection`
8046+ instances containing the filled area of each violin.
80688047
8069- - ``cmins``: A
8070- :class:`matplotlib.collections.LineCollection` instance
8071- created to identify the bottom of each violin's
8072- distribution.
8048+ - ``cmeans``: A `~.collections.LineCollection` instance that marks
8049+ the mean values of each of the violin's distribution.
80738050
8074- - ``cmaxes``: A
8075- :class:`matplotlib.collections.LineCollection` instance
8076- created to identify the top of each violin's
8077- distribution.
8051+ - ``cmins``: A `~.collections.LineCollection` instance that marks
8052+ the bottom of each violin's distribution.
80788053
8079- - ``cbars``: A
8080- :class:`matplotlib.collections.LineCollection` instance
8081- created to identify the centers of each violin's
8082- distribution.
8054+ - ``cmaxes``: A `~.collections.LineCollection` instance that marks
8055+ the top of each violin's distribution.
80838056
8084- - ``cmedians``: A
8085- :class:`matplotlib.collections.LineCollection` instance
8086- created to identify the median values of each of the
8087- violin's distribution.
8057+ - ``cbars``: A `~.collections.LineCollection` instance that marks
8058+ the centers of each violin's distribution.
80888059
8060+ - ``cmedians``: A `~.collections.LineCollection` instance that
8061+ marks the median values of each of the violin's distribution.
80898062 """
80908063
80918064 # Statistical quantities to be plotted on the violins
0 commit comments