@@ -96,17 +96,14 @@ def inset_locator(ax, renderer):
96
96
97
97
class Axes (_AxesBase ):
98
98
"""
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.
110
107
111
108
Attributes
112
109
----------
@@ -5967,10 +5964,9 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
5967
5964
5968
5965
.. note::
5969
5966
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()
5974
5970
<differences-pcolor-pcolormesh>`.
5975
5971
5976
5972
Parameters
@@ -7951,34 +7947,23 @@ def violinplot(self, dataset, positions=None, vert=True, widths=0.5,
7951
7947
list of the corresponding collection instances created. The
7952
7948
dictionary has the following keys:
7953
7949
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.
7957
7952
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.
7962
7955
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.
7967
7958
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.
7972
7961
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.
7977
7964
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.
7982
7967
7983
7968
Notes
7984
7969
-----
@@ -8057,35 +8042,23 @@ def violin(self, vpstats, positions=None, vert=True, widths=0.5,
8057
8042
list of the corresponding collection instances created. The
8058
8043
dictionary has the following keys:
8059
8044
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.
8068
8047
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.
8073
8050
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.
8078
8053
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.
8083
8056
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.
8088
8059
8060
+ - ``cmedians``: A `~.collections.LineCollection` instance that
8061
+ marks the median values of each of the violin's distribution.
8089
8062
"""
8090
8063
8091
8064
# Statistical quantities to be plotted on the violins
0 commit comments