From 906b0c838b1263ce8cc7d4af3461c9abd4d14b61 Mon Sep 17 00:00:00 2001 From: Chahak Mehta Date: Mon, 8 May 2023 19:11:24 -0500 Subject: [PATCH] Add first version of rcparams usage --- galleries/tutorials/index.rst | 6 + galleries/tutorials/rcparams.rst | 2930 ++++++++++++++++++++++++++++++ 2 files changed, 2936 insertions(+) create mode 100644 galleries/tutorials/rcparams.rst diff --git a/galleries/tutorials/index.rst b/galleries/tutorials/index.rst index 899b3bbcc64e..01d36251272c 100644 --- a/galleries/tutorials/index.rst +++ b/galleries/tutorials/index.rst @@ -95,6 +95,7 @@ a :ref:`FAQ ` in our :ref:`user guide `. /tutorials/images /tutorials/lifecycle /tutorials/artists + /tutorials/rcparams .. only:: html @@ -157,3 +158,8 @@ Toolkits ~~~~~~~~ See :ref:`tutorials-toolkits`. + +RcParams +~~~~~~~~ + +See :ref:`rcparams`. diff --git a/galleries/tutorials/rcparams.rst b/galleries/tutorials/rcparams.rst new file mode 100644 index 000000000000..efa8d2971842 --- /dev/null +++ b/galleries/tutorials/rcparams.rst @@ -0,0 +1,2930 @@ +======================= +``matplotlib.RcParams`` +======================= + +Matplotlib has a ``matplotlibrc`` file that sets up many different values that in +one way or other affect the usage of the library. This note tries to document +which ``rcParams`` value is used where in matplotlib. While the comments are +useful, they don’t always list the secondary effects of setting some values (ex. +``linewidth``). This should hopefully address that too. + +1 BACKENDS +---------- + +.. table:: + + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``webagg.port`` | ``_clean/lib/matplotlib/backends/backend_webagg.py:245`` | ``WebAggApplication.initialize`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:821`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:42`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:405`` | ``test_webagg`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``webagg.address`` | ``_clean/lib/matplotlib/backends/backend_webagg.py:242`` | ``WebAggApplication.initialize`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:822`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:42`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:405`` | ``test_webagg`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``webagg.port_retries`` | ``_clean/lib/matplotlib/backends/backend_webagg.py:247`` | ``WebAggApplication.initialize`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:824`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:43`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:113`` | ``_test_interactive_impl`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:222`` | ``_test_thread_impl`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``webagg.open_in_browser`` | ``_clean/lib/matplotlib/backends/backend_webagg.py:64`` | ``FigureManagerWebAgg.pyplot_show`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:823`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:43`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:112`` | ``_test_interactive_impl`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:221`` | ``_test_thread_impl`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``backend_fallback`` | ``_clean/lib/matplotlib/__init__.py:1254`` | ``use`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:2378`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:2381`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:815`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:43`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``interactive`` | ``_clean/lib/matplotlib/__init__.py:129`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.py:1155`` | ``rc_context`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.py:1276`` | ``interactive`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.py:1288`` | ``is_interactive`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.pyi:26`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:818`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:42`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:596`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:659`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``figure.hooks`` | ``_clean/lib/matplotlib/pyplot.py:905`` | ``figure`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:816`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_pyplot.py:452`` | ``test_figure_hook`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``toolbar`` | ``_clean/lib/matplotlib/backend_bases.py:2635`` | ``FigureManagerBase.__init__`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2642`` | ``FigureManagerBase.__init__`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2644`` | ``FigureManagerBase.__init__`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2647`` | ``FigureManagerBase.__init__`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:3172`` | ``NavigationToolbar2.configure_subplots`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk4.py:294`` | ``NavigationToolbar2GTK4.__init__`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:258`` | ``_validate_toolbar`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:817`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:44`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_bases.py:274`` | ``test_toolbar_zoompan`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_bases.py:405`` | ``test_toolmanager_remove`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_bases.py:416`` | ``test_toolmanager_get_tool`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_bases.py:433`` | ``test_toolmanager_update_keymap`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:154`` | ``_test_interactive_impl`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:158`` | ``_test_interactive_impl`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:192`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backends_interactive.py:203`` | ``test_interactive_backend`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:1013`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:1016`` | ``test_TextBox`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | ``timezone`` | ``_clean/lib/matplotlib/dates.py:222`` | ``_get_tzinfo`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:819`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:44`` | ``None`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:1330`` | ``test_DateLocator`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:198`` | ``test_Issue_1713`` | + +----------------------------+------------------------------------------------------------------+-------------------------------------------+ + +2 LINES +------- + +.. table:: + + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.linewidth`` | ``_clean/lib/matplotlib/__init__.py:998`` | ``rc`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.py:1035`` | ``rc`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.py:1170`` | ``rc_context`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:4654`` | ``Axes.scatter`` | Used to set the default linewidth | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:4657`` | ``Axes.scatter`` | of markers in scatter. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/collections.py:1455`` | ``LineCollection._get_default_linewidth`` | Default linewidth for ``LineCollection``. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/contour.py:1231`` | ``ContourSet._process_linewidths`` | If ``contour.linewidth`` is not set, contour linewidths fallback to this. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/lines.py:329`` | ``Line2D.__init__`` | Default linewidth for ``Line2D`` class. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:724`` | ``xkcd`` | xkcd style sets its own linewidth. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:827`` | ``None`` | Default validator. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/streamplot.py:106`` | ``streamplot`` | Default linewidth for ``streamplot``. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:2705`` | ``TestScatter.test_scatter_linewidths`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:2934`` | ``_bxp_test_helper`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5284`` | ``test_twin_spines_on_top`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_collections.py:1199`` | ``None`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:364`` | ``test_contour_linewidth`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:40`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:52`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:53`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:56`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:57`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:58`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:61`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:63`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:70`` | ``test_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:194`` | ``test_style_from_module`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:196`` | ``test_style_from_module`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:198`` | ``test_style_from_module`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:104`` | ``Axis.__init__`` | Major tick widths in Axis3d are set to linewidth. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:105`` | ``Axis.__init__`` | Minor tick widths are also set to linewidth. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.linestyle`` | ``_clean/lib/matplotlib/axes/_axes.py:3019`` | ``Axes.stem`` | Default linestyle for stemlines. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:202`` | ``_process_plot_format`` | Default linestyle if linestyle is not passed in MATLAB plot format. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/lines.py:332`` | ``Line2D.__init__`` | Default linestyle for ``Line2D`` instance. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:828`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axes3d.py:3285`` | ``Axes3D.stem`` | Default linestyle for 3d stemplots | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.color`` | ``_clean/lib/matplotlib/__init__.py:999`` | ``rc`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/collections.py:1461`` | ``LineCollection._get_default_edgecolor`` | Default line color for ``LineCollection`` | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/lines.py:336`` | ``Line2D.__init__`` | Default line color for ``Line2D`` instance. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:829`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:4854`` | ``test_vlines_default`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:4901`` | ``test_hlines_default`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.marker`` | ``_clean/lib/matplotlib/lines.py:334`` | ``Line2D.__init__`` | Default marker for ``LineCollection`` | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:830`` | ``None`` | Validator for rcparams | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:782`` | ``test_single_point`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3383`` | ``test_boxplot_marker_behavior`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3392`` | ``test_boxplot_marker_behavior`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.markerfacecolor`` | ``_clean/lib/matplotlib/rcsetup.py:831`` | ``None`` | Validator for rcparams | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:175`` | ``test_mfc_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.markeredgecolor`` | ``_clean/lib/matplotlib/rcsetup.py:832`` | ``None`` | Validator for rcparams | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7729`` | ``test_xtickcolor_is_not_markercolor`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7737`` | ``test_ytickcolor_is_not_markercolor`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:181`` | ``test_mec_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.markeredgewidth`` | ``_clean/lib/matplotlib/lines.py:1252`` | ``Line2D.set_markeredgewidth`` | Default marker edge width in points for ``Line2D``. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:833`` | ``None`` | Validator for rcparams | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:226`` | ``test_formatter_ticker`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.markersize`` | ``_clean/lib/matplotlib/axes/_axes.py:4455`` | ``Axes.scatter`` | Default markersize for a scatter plot is based on its square. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:4577`` | ``Axes.scatter`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/collections.py:1090`` | ``PathCollection.legend_elements`` | If ``prop`` is set to ``colors`` and ``size`` is not passed, then this is used to generate legend elements for a ``PathCollection`` | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/lines.py:339`` | ``Line2D.__init__`` | Default marker size for ``Line2D``. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:834`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:121`` | ``test_rcupdate`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:127`` | ``test_rcupdate`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axes3d.py:3069`` | ``Axes3D.errorbar`` | When defining the style for quivers in errorbars, if the size for the caps isn’t defined, then this is the fallback. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.dash_joinstyle`` | ``_clean/lib/matplotlib/lines.py:345`` | ``Line2D.__init__`` | Default markersize for Line2D. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:836`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.dash_capstyle`` | ``_clean/lib/matplotlib/lines.py:343`` | ``Line2D.__init__`` | Default cap style for Line2D. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:838`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.solid_joinstyle`` | ``_clean/lib/matplotlib/lines.py:349`` | ``Line2D.__init__`` | Default join style for Line2D. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:837`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:850`` | ``AxisArtist._init_line`` | Line join style for drawing the ``Axis`` line. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.solid_capstyle`` | ``_clean/lib/matplotlib/lines.py:347`` | ``Line2D.__init__`` | Default join style for Line2D. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:839`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:849`` | ``AxisArtist._init_line`` | Line cap style for drawing the ``Axis`` line. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.antialiased`` | ``_clean/lib/matplotlib/collections.py:1458`` | ``LineCollection._get_default_antialiased`` | Sets the default antialiasing for LineCollection. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/lines.py:341`` | ``Line2D.__init__`` | Default antialiasing value for Line2D. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:835`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.dashed_pattern`` | ``_clean/lib/matplotlib/rcsetup.py:840`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.dashdot_pattern`` | ``_clean/lib/matplotlib/rcsetup.py:841`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.dotted_pattern`` | ``_clean/lib/matplotlib/rcsetup.py:842`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``lines.scale_dashes`` | ``_clean/lib/matplotlib/lines.py:76`` | ``_scale_dashes`` | Value by which any Collection dashes are scaled. Used in lines, collections and patches. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:843`` | ``None`` | Validator for rcparams. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``markers.fillstyle`` | ``_clean/lib/matplotlib/markers.py:293`` | ``MarkerStyle._set_fillstyle`` | Default fillstyle for markers. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:487`` | ``None`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:846`` | ``None`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:4673`` | ``test_markers_fillstyle_rcparams`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``pcolor.shading`` | ``_clean/lib/matplotlib/axes/_axes.py:5937`` | ``Axes.pcolor`` | Default shading value if kwarg not passed to ``pcolor``. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:6209`` | ``Axes.pcolormesh`` | Default shading value if kwarg not passed to ``pcolormesh``. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:849`` | ``None`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | ``pcolormesh.snap`` | ``_clean/lib/matplotlib/axes/_axes.py:6217`` | ``Axes.pcolormesh`` | Default value to check where to snap pcolor mesh to pixel boundaries. | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:850`` | ``None`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_agg_filter.py:11`` | ``test_agg_filter_alpha`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:926`` | ``test_hexbin_log`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:1226`` | ``test_pcolormesh`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:1272`` | ``test_pcolormesh_alpha`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:1317`` | ``test_pcolormesh_datetime_axis`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:2392`` | ``test_hist2d`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:2410`` | ``test_hist2d_transpose`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:111`` | ``test_colorbar_extension_shape`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:124`` | ``test_colorbar_extension_length`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:165`` | ``test_colorbar_positioning`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:332`` | ``test_colorbar_closed_patch`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colors.py:838`` | ``test_cmap_and_norm_from_levels_and_colors`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colors.py:858`` | ``test_boundarynorm_and_colorbarbase`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_constrainedlayout.py:95`` | ``test_constrained_layout6`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_constrainedlayout.py:409`` | ``test_colorbar_location`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:105`` | ``test_given_colors_levels_and_extends`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:287`` | ``test_contourf_log_extension`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:326`` | ``test_contour_addlines`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:343`` | ``test_contour_uneven`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:826`` | ``test_mask_image_over_under`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/tests/test_axes_grid1.py:703`` | ``test_imagegrid_cbar_mode_edge`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_axislines.py:64`` | ``test_ParasiteAxesAuxTrans`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:557`` | ``test_surface3d`` | \ | + +---------------------------+---------------------------------------------------------------------+-----------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+ + +3 PATCHES +--------- + +.. table:: + + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | ``patch.linewidth`` | ``_clean/lib/matplotlib/collections.py:567`` | ``Collection._get_default_linewidth`` | The default linewidth for the base Collections class. | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_Clean/lib/matplotlib/patches.py:391`` | ``Patch.set_linewidth`` | Patch linewidth if None is passed in set\ :sub:`linewidth`\ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:853`` | ``None`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:556`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:559`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:562`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | ``patch.facecolor`` | ``_clean/lib/matplotlib/axes/_axes.py:4129`` | ``Axes.bxp`` | The default face color for box plot/whisker plot if not in classic mode. | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/collections.py:732`` | ``Collection._get_default_facecolor`` | Default facecolor for all collections. | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/patches.py:343`` | ``Patch._set_facecolor`` | Patch default facecolor if None is passed to set\ :sub:`facecolor`\ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:856`` | ``None`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | ``patch.edgecolor`` | ``_clean/lib/matplotlib/collections.py:769`` | ``Collection._get_default_edgecolor`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/patches.py:320`` | ``Patch._set_edgecolor`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:854`` | ``None`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:566`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:569`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:572`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | ``patch.force_edgecolor`` | ``_clean/lib/matplotlib/collections.py:774`` | ``Collection._set_edgecolor`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/patches.py:318`` | ``Patch._set_edgecolor`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:855`` | ``None`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:576`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:579`` | ``test_deprecation`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | ``patch.antialiased`` | ``_clean/lib/matplotlib/collections.py:712`` | ``Collection._get_default_antialiased`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/patches.py:311`` | ``Patch.set_antialiased`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:857`` | ``None`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:823`` | ``test_default_antialiased`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:824`` | ``test_default_antialiased`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:827`` | ``test_default_antialiased`` | \ | + +---------------------------+------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------------+ + +4 HATCHES +--------- + +.. table:: + + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | ``hatch.color`` | ``_clean/lib/matplotlib/backend_bases.py:774`` | ``GraphicsContextBase.__init__`` | Default hatch color on Graphics Context ABC. | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/collections.py:172`` | ``Collection.__init__`` | \ | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/patches.py:74`` | ``Patch.__init__`` | Default hatch color on Collections | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:860`` | ``None`` | \ | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:498`` | ``test_multi_color_hatch`` | \ | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | ``hatch.linewidth`` | ``_clean/lib/matplotlib/backend_bases.py:775`` | ``GraphicsContextBase.__init__`` | Default hatch linewidth on Graphics Context ABC. | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:1579`` | ``PdfFile.writeHatches`` | In PDF writers, for every hatch pattern, this is used somehow. **Not very sure** | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:359`` | ``RendererPS.create_hatch`` | Hatch linewidth in Postscript renderer. | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_svg.py:525`` | ``RendererSVG._write_hatches`` | Default stroke width for hatches in SVG renderer. | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:861`` | ``None`` | \ | + +---------------------+--------------------------------------------------------+----------------------------------+----------------------------------------------------------------------------------+ + +5 BOXPLOT +--------- + +.. table:: + + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.notch`` | ``_clean/lib/matplotlib/axes/_axes.py:3894`` | ``Axes.boxplot`` | Default boxplot notch | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:867`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3270`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.vertical`` | ``_clean/lib/matplotlib/axes/_axes.py:3896`` | ``Axes.boxplot`` | Default boxplot value to draw vertical | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:868`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3296`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.whiskers`` | ``_clean/lib/matplotlib/axes/_axes.py:3887`` | ``Axes.boxplot`` | Default whiskers size for boxplot | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:869`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3271`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3297`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3302`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.bootstrap`` | ``_clean/lib/matplotlib/axes/_axes.py:3889`` | ``Axes.boxplot`` | Default boxplot bootstrap value | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:870`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3272`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.patchartist`` | ``_clean/lib/matplotlib/axes/_axes.py:3898`` | ``Axes.boxplot`` | Default boxplot patchartist value | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:871`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3298`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.showmeans`` | ``_clean/lib/matplotlib/axes/_axes.py:3902`` | ``Axes.boxplot`` | Default boxplot value to show means | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:872`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3306`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.showcaps`` | ``_clean/lib/matplotlib/axes/_axes.py:3904`` | ``Axes.boxplot`` | Default boxplot value to show caps | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:873`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3303`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.showbox`` | ``_clean/lib/matplotlib/axes/_axes.py:3906`` | ``Axes.boxplot`` | Default boxplot value to show box | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:874`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3304`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.showfliers`` | ``_clean/lib/matplotlib/axes/_axes.py:3908`` | ``Axes.boxplot`` | Default boxplot value to show fliers | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:875`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3305`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanline`` | ``_clean/lib/matplotlib/axes/_axes.py:3900`` | ``Axes.boxplot`` | Default boxplot value to show full length mean lines | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:876`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3307`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.color`` | ``_clean/lib/matplotlib/rcsetup.py:878`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3274`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.marker`` | ``_clean/lib/matplotlib/rcsetup.py:879`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3275`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3384`` | ``test_boxplot_marker_behavior`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.markerfacecolor`` | ``_clean/lib/matplotlib/rcsetup.py:880`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3276`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.markeredgecolor`` | ``_clean/lib/matplotlib/rcsetup.py:881`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3277`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.markeredgewidth`` | ``_clean/lib/matplotlib/rcsetup.py:882`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.markersize`` | ``_clean/lib/matplotlib/rcsetup.py:883`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3278`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.linestyle`` | ``_clean/lib/matplotlib/rcsetup.py:884`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3279`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.flierprops.linewidth`` | ``_clean/lib/matplotlib/rcsetup.py:885`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3280`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.boxprops.color`` | ``_clean/lib/matplotlib/axes/_axes.py:4127`` | ``Axes.bxp`` | Boxplot box kwarg value for the boxes edge color | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:887`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3282`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.boxprops.linewidth`` | ``_clean/lib/matplotlib/axes/_axes.py:4126`` | ``Axes.bxp`` | Boxplot box kwarg value for the boxes line width | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:888`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:2933`` | ``_bxp_test_helper`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3283`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.boxprops.linestyle`` | ``_clean/lib/matplotlib/axes/_axes.py:4125`` | ``Axes.bxp`` | Boxplot box kwarg value for the boxes line style | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:889`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3284`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.whiskerprops.color`` | ``_clean/lib/matplotlib/rcsetup.py:891`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3313`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.whiskerprops.linewidth`` | ``_clean/lib/matplotlib/rcsetup.py:892`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3314`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.whiskerprops.linestyle`` | ``_clean/lib/matplotlib/rcsetup.py:893`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3315`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.capprops.color`` | ``_clean/lib/matplotlib/rcsetup.py:895`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3286`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.capprops.linewidth`` | ``_clean/lib/matplotlib/rcsetup.py:896`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3287`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.capprops.linestyle`` | ``_clean/lib/matplotlib/rcsetup.py:897`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3288`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.medianprops.color`` | ``_clean/lib/matplotlib/rcsetup.py:899`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3290`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.medianprops.linewidth`` | ``_clean/lib/matplotlib/rcsetup.py:900`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3291`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.medianprops.linestyle`` | ``_clean/lib/matplotlib/rcsetup.py:901`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3292`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.color`` | ``_clean/lib/matplotlib/rcsetup.py:903`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3309`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.marker`` | ``_clean/lib/matplotlib/rcsetup.py:904`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3385`` | ``test_boxplot_marker_behavior`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.markerfacecolor`` | ``_clean/lib/matplotlib/rcsetup.py:905`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.markeredgecolor`` | ``_clean/lib/matplotlib/rcsetup.py:906`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.markersize`` | ``_clean/lib/matplotlib/rcsetup.py:907`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.linestyle`` | ``_clean/lib/matplotlib/rcsetup.py:908`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3311`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | ``boxplot.meanprops.linewidth`` | ``_clean/lib/matplotlib/rcsetup.py:909`` | ``None`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3310`` | ``test_boxplot_rc_parameters`` | \ | + +----------------------------------------+---------------------------------------------------+----------------------------------+------------------------------------------------------+ + +6 FONT +------ + +.. table:: + + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.family`` | ``_clean/lib/matplotlib/backends/backend_ps.py:587`` | ``RendererPS.draw_tex`` | To determine font family in drawing tex | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/font_manager.py:728`` | ``FontProperties.set_family`` | Default font family if no arg is passed. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:717`` | ``xkcd`` | To update the rcParams per xkcd fonts. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:912`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/testing/__init__.py:19`` | ``set_font_settings_for_testing`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:28`` | ``test_use14corefonts`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:82`` | ``test_xelatex`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:103`` | ``test_pdflatex`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:118`` | ``test_rcupdate`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:124`` | ``test_rcupdate`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:150`` | ``test_pathclip`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:169`` | ``test_mixedmode`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:179`` | ``test_bbox_inches`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:198`` | ``test_pdf_pages`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:320`` | ``test_unknown_font`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:1054`` | ``test_usetex_no_warn`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:505`` | ``test_mathtext_cmr10_minus_sign`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:78`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:87`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:103`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:26`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:28`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:30`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:32`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:34`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:35`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:36`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:38`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:763`` | ``TestScalarFormatter.test_mathtext_ticks`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:775`` | ``TestScalarFormatter.test_cmr10_substitutions`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/texmanager.py:111`` | ``TexManager._get_font_family_and_reduced`` | Select font family based on rcparam and ``TexManager._font_families``. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/texmanager.py:131`` | ``TexManager._get_font_preamble_and_command`` | Select preamble for font family in ``TexManager`` | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:550`` | ``ScalarFormatter.set_useMathText`` | If using mathtext, get font properties for the family. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.style`` | ``_clean/lib/matplotlib/font_manager.py:742`` | ``FontProperties.set_style`` | Set default font style for None in Font Manager. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:913`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.variant`` | ``_clean/lib/matplotlib/font_manager.py:755`` | ``FontProperties.set_variant`` | Set default font variant for None in Font Manager. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:914`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.weight`` | ``_clean/lib/matplotlib/font_manager.py:771`` | ``FontProperties.set_weight`` | Set default font weight for None in Font Manager. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:916`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:79`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:89`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.stretch`` | ``_clean/lib/matplotlib/backends/backend_svg.py:1143`` | ``RendererSVG._draw_text_as_text`` | Used via font manager | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_svg.py:1215`` | ``RendererSVG._draw_text_as_text`` | Used via font manager | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/font_manager.py:797`` | ``FontProperties.set_stretch`` | Set default font stretch for None in Font Manager. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:915`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_svg.py:223`` | ``test_svgnone_with_data_coordinates`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.size`` | ``_clean/lib/matplotlib/_tight_layout.py:51`` | ``_auto_adjust_subplotpars`` | Part of subplot parameters used to adjust spacing between subplots. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/font_manager.py:823`` | ``FontProperties.set_size`` | Set default font size for None in Font Manager. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/font_manager.py:1097`` | ``FontManager.get_default_size`` | Get default font size. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:719`` | ``xkcd`` | Update rcparams for xkcd style. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:917`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:3656`` | ``test_tick_space_size_0`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:29`` | ``test_use14corefonts`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:119`` | ``test_rcupdate`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:125`` | ``test_rcupdate`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_svg.py:579`` | ``test_svg_font_string`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ft2font.py:42`` | ``test_fallback_smoke`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ft2font.py:70`` | ``test_font_fallback_chinese`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:733`` | ``test_legend_title_fontprop_fontsize`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:736`` | ``test_legend_title_fontprop_fontsize`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:401`` | ``test_genfrac_displaystyle`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:80`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:88`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:102`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:522`` | ``test_text_size_binding`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:525`` | ``test_text_size_binding`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:88`` | ``test_minus_no_descent`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:1087`` | ``test_radio_buttons`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:1132`` | ``test_check_buttons`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_widgets.py:1134`` | ``test_check_buttons`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/texmanager.py:326`` | ``TexManager.get_grey`` | Default font size while returning alpha channel in Texmanager. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/tests/test_axes_grid1.py:70`` | ``test_twin_axes_empty_and_removed`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.serif`` | ``_clean/lib/matplotlib/font_manager.py:1288`` | ``FontManager.findfont`` | Serif font used in finiding closest cached font. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:918`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:1055`` | ``test_usetex_no_warn`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:28`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:764`` | ``TestScalarFormatter.test_mathtext_ticks`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.sans-serif`` | ``_clean/lib/matplotlib/font_manager.py:1288`` | ``FontManager.findfont`` | Sans-serif font used in finding closest cached font. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:919`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:30`` | ``test_use14corefonts`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_font_manager.py:26`` | ``test_font_priority`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_font_manager.py:241`` | ``test_missing_family`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:26`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.cursive`` | ``_clean/lib/matplotlib/font_manager.py:1288`` | ``FontManager.findfont`` | Cursive font used in finding closest cached font. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:920`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:74`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:83`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:102`` | ``test_RcParams_class`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:30`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.fantasy`` | ``_clean/lib/matplotlib/font_manager.py:1288`` | ``FontManager.findfont`` | Fantasy font used in finding closest cached font. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:921`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | ``font.monospace`` | ``_clean/lib/matplotlib/font_manager.py:1289`` | ``FontManager.findfont`` | Monospace font used in finding closest cached font. | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:922`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:32`` | ``None`` | \ | + +---------------------+--------------------------------------------------------------------+--------------------------------------------------+------------------------------------------------------------------------+ + +7 TEXT +------ + +.. table:: + + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | ``text.color`` | ``_clean/lib/matplotlib/legend.py:639`` | ``Legend.__init__`` | Legend color if labelcolor is not passed and ``legend.labelcolor`` is also ``None``. | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:925`` | ``None`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/text.py:173`` | ``Text._reset_visual_defaults`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | ``text.hinting`` | ``_clean/lib/matplotlib/backends/backend_agg.py:56`` | ``get_hinting_flag`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:928`` | ``None`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/testing/__init__.py:20`` | ``set_font_settings_for_testing`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | ``text.hinting_factor`` | ``_clean/lib/matplotlib/font_manager.py:1550`` | ``get_font`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:930`` | ``None`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/testing/__init__.py:21`` | ``set_font_settings_for_testing`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:576`` | ``test_hinting_factor_backends`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | ``text.kerning_factor`` | ``_clean/lib/matplotlib/font_manager.py:1556`` | ``get_font`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:931`` | ``None`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_artist.py:221`` | ``test_default_edges`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:31`` | ``test_image_interps`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:256`` | ``test_hatching`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:136`` | ``test_multiline2`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:678`` | ``test_large_subscript_title`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_axis_artist.py:30`` | ``test_labelbase`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_axis_artist.py:47`` | ``test_ticklabels`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_axis_artist.py:82`` | ``test_axis_artist`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_axislines.py:13`` | ``test_SubplotZero`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_axislines.py:34`` | ``test_Subplot`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_floating_axes.py:71`` | ``test_curvelinear4`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_grid_helper_curvelinear.py:81`` | ``test_polar_box`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/tests/test_grid_helper_curvelinear.py:143`` | ``test_axis_direction`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | ``text.antialiased`` | ``_clean/lib/matplotlib/_mathtext.py:127`` | ``Output.to_raster`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:209`` | ``RendererAgg.draw_text`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_cairo.py:208`` | ``RendererCairo.draw_text`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:932`` | ``None`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:187`` | ``test_antialiasing`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | ``text.parse_math`` | ``_clean/lib/matplotlib/rcsetup.py:933`` | ``None`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:824`` | ``test_parse_math_rcparams`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/text.py:117`` | ``Text.__init__`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/text.py:177`` | ``Text._reset_visual_defaults`` | \ | + +-------------------------+----------------------------------------------------------------------------------+-----------------------------------+--------------------------------------------------------------------------------------+ + +8 LaTeX +------- + +.. table:: + + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``text.usetex`` | ``_clean/lib/matplotlib/backends/backend_ps.py:258`` | ``RendererPS.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:575`` | ``RendererPS.draw_tex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:845`` | ``FigureCanvasPS._print_ps`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:1065`` | ``FigureCanvasPS._print_figure_tex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:645`` | ``DateFormatter.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:783`` | ``ConciseDateFormatter.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:961`` | ``AutoDateFormatter.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/markers.py:508`` | ``MarkerStyle._set_mathtext_path`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:708`` | ``xkcd`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:926`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:29`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:32`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:54`` | ``test_savefig_to_stringio`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:60`` | ``test_savefig_to_stringio`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:105`` | ``test_tilde_in_tempfilename`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:123`` | ``test_transparency_tex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:151`` | ``test_failing_latex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:171`` | ``test_usetex_preamble`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_determinism.py:19`` | ``_save_figure`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:1056`` | ``test_usetex_no_warn`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:39`` | ``test_rcparams`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:46`` | ``test_rcparams`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:47`` | ``test_rcparams`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:48`` | ``test_rcparams`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:509`` | ``test_rcparams_reset_after_fail`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:510`` | ``test_rcparams_reset_after_fail`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:512`` | ``test_rcparams_reset_after_fail`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:514`` | ``test_rcparams_reset_after_fail`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:125`` | ``test_context_with_union_of_dict_and_namedstyle`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:15`` | ``test_fontconfig_preamble`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:52`` | ``test_unicode_characters`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:70`` | ``test_openin_any_paranoid`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:594`` | ``test_usetex_is_copied`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:596`` | ``test_usetex_is_copied`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:620`` | ``test_single_artist_usenotex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:885`` | ``TestLogFormatterSciNotation.test_basic`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:1477`` | ``TestPercentFormatter.test_basic`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:1483`` | ``TestPercentFormatter.test_latex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:22`` | ``test_usetex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:46`` | ``test_empty`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:52`` | ``test_unicode_minus`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:63`` | ``test_mathdefault`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:106`` | ``test_usetex_packages`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:133`` | ``test_usetex_with_underscore`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:151`` | ``test_missing_psfont`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/text.py:114`` | ``Text.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/text.py:1294`` | ``Text.set_usetex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:426`` | ``ScalarFormatter.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1053`` | ``LogFormatterMathtext.__call__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1380`` | ``EngFormatter.set_usetex`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1552`` | ``PercentFormatter.symbol`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``text.latex.preamble`` | ``_clean/lib/matplotlib/__init__.py:941`` | ``rc_params_from_file`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/__init__.py:948`` | ``rc_params_from_file`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:1093`` | ``_convert_psfrags`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:1094`` | ``_convert_psfrags`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:927`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:173`` | ``test_usetex_preamble`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_texmanager.py:18`` | ``test_fontconfig_preamble`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:112`` | ``test_usetex_packages`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:126`` | ``test_latex_pkg_already_loaded`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/texmanager.py:191`` | ``TexManager.get_custom_preamble`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.fontset`` | ``_clean/lib/matplotlib/font_manager.py:889`` | ``FontProperties.set_math_fontfamily`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/font_manager.py:891`` | ``FontProperties.set_math_fontfamily`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/font_manager.py:893`` | ``FontProperties.set_math_fontfamily`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:941`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/sphinxext/mathmpl.py:132`` | ``latex2png`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:228`` | ``test_type42_font_without_prep`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:210`` | ``test_mathtext_rendering`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:225`` | ``test_mathtext_rendering_svgastext`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:252`` | ``test_mathfont_rendering`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:425`` | ``test_mathtext_fallback`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:463`` | ``test_default_math_fontfamily`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:478`` | ``test_argument_order`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:840`` | ``test_pdf_chars_beyond_bmp`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:776`` | ``TestScalarFormatter.test_cmr10_substitutions`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.bf`` | ``_clean/lib/matplotlib/rcsetup.py:939`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:428`` | ``test_mathtext_fallback`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.cal`` | ``_clean/lib/matplotlib/rcsetup.py:935`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.it`` | ``_clean/lib/matplotlib/rcsetup.py:938`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:427`` | ``test_mathtext_fallback`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.rm`` | ``_clean/lib/matplotlib/rcsetup.py:936`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:426`` | ``test_mathtext_fallback`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.sf`` | ``_clean/lib/matplotlib/rcsetup.py:940`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.tt`` | ``_clean/lib/matplotlib/rcsetup.py:937`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.fallback`` | ``_clean/lib/matplotlib/_mathtext.py:478`` | ``UnicodeFonts.__init__`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:945`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:408`` | ``test_mathtext_fallback_valid`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:414`` | ``test_mathtext_fallback_invalid`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:429`` | ``test_mathtext_fallback`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | ``mathtext.default`` | ``_clean/lib/matplotlib/_mathtext.py:329`` | ``TruetypeFonts.get_xheight`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/_mathtext.py:732`` | ``StixFonts._map_virtual_font`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/_mathtext.py:2024`` | ``Parser.non_math`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/_mathtext.py:2048`` | ``Parser._make_space`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/_mathtext.py:2439`` | ``Parser._genfrac`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:943`` | ``None`` | + +-------------------------+--------------------------------------------------------+----------------------------------------------------+ + +9 AXES +------ + +.. table:: + + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.facecolor`` | ``_clean/lib/matplotlib/axes/_base.py:677`` | ``_AxesBase.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/legend.py:567`` | ``Legend.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:973`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:143`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:145`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:149`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:69`` | ``test_use_url`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.edgecolor`` | ``_clean/lib/matplotlib/colorbar.py:381`` | ``Colorbar.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/legend.py:572`` | ``Legend.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:729`` | ``xkcd`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:974`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/spines.py:59`` | ``Spine.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:395`` | ``test_twin_logscale`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:147`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:567`` | ``test_deprecation`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:570`` | ``test_deprecation`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:573`` | ``test_deprecation`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:846`` | ``AxisArtist._init_line`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axisline_style.py:181`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:112`` | ``Axis.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.linewidth`` | ``_clean/lib/matplotlib/colorbar.py:382`` | ``Colorbar.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:723`` | ``xkcd`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:975`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/spines.py:60`` | ``Spine.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:396`` | ``test_twin_logscale`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5283`` | ``test_twin_spines_on_top`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:353`` | ``test_colorbar_closed_patch`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:976`` | ``test_colorbar_extend_drawedges`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:1020`` | ``test_colorbar_contourf_extend_patches`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:557`` | ``test_deprecation`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:560`` | ``test_deprecation`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:563`` | ``test_deprecation`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:848`` | ``AxisArtist._init_line`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:111`` | ``Axis.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.grid`` | ``_clean/lib/matplotlib/axes/_base.py:1298`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:91`` | ``Tick.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:94`` | ``Tick.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:847`` | ``Axis._reset_major_tick_kw`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:853`` | ``Axis._reset_minor_tick_kw`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:887`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:890`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/projections/geo.py:54`` | ``GeoAxes.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:727`` | ``xkcd`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:990`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:783`` | ``test_single_point`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5317`` | ``test_rcparam_grid_minor`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5349`` | ``test_reset_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6072`` | ``test_rc_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6076`` | ``test_rc_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6080`` | ``test_rc_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:1104`` | ``test_colorbar_no_warning_rcparams_grid_true`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:1107`` | ``test_colorbar_no_warning_rcparams_grid_true`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.grid.axis`` | ``_clean/lib/matplotlib/axes/_base.py:1311`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:992`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6073`` | ``test_rc_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6077`` | ``test_rc_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6081`` | ``test_rc_grid`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.grid.which`` | ``_clean/lib/matplotlib/axes/_base.py:1310`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:89`` | ``Tick.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:92`` | ``Tick.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:848`` | ``Axis._reset_major_tick_kw`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:854`` | ``Axis._reset_minor_tick_kw`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:888`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:891`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:991`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5317`` | ``test_rcparam_grid_minor`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.titlelocation`` | ``_clean/lib/matplotlib/axes/_axes.py:151`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:983`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6265`` | ``test_title_location_roundtrip`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.titlesize`` | ``_clean/lib/matplotlib/axes/_axes.py:122`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:166`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:1313`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:1919`` | ``Axis.set_ticklabels`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:982`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.titleweight`` | ``_clean/lib/matplotlib/axes/_axes.py:123`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:167`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:1314`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:1920`` | ``Axis.set_ticklabels`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:984`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.titlecolor`` | ``_clean/lib/matplotlib/axes/_axes.py:124`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:170`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:985`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:187`` | ``test_axes_titlecolor_rcparams`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.titley`` | ``_clean/lib/matplotlib/axes/_axes.py:154`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:1316`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:987`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6720`` | ``test_title_xticks_top`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6730`` | ``test_title_xticks_top_both`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6752`` | ``test_title_above_offset`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6772`` | ``test_title_no_move_off_page`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:679`` | ``test_large_subscript_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.titlepad`` | ``_clean/lib/matplotlib/axes/_axes.py:174`` | ``Axes.set_title`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:1340`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:989`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6259`` | ``test_title_pad`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.labelsize`` | ``_clean/lib/matplotlib/axis.py:658`` | ``Axis.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:873`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:993`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:8484`` | ``test_rc_axes_label_formatting`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:994`` | ``AxisArtist._init_label`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.labelpad`` | ``_clean/lib/matplotlib/axis.py:666`` | ``Axis.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:876`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:994`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:968`` | ``test_axes3d_labelpad`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.labelweight`` | ``_clean/lib/matplotlib/axis.py:659`` | ``Axis.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:874`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:995`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:8485`` | ``test_rc_axes_label_formatting`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:995`` | ``AxisArtist._init_label`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.labelcolor`` | ``_clean/lib/matplotlib/axis.py:660`` | ``Axis.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:872`` | ``Axis.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:996`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:8483`` | ``test_rc_axes_label_formatting`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.axisbelow`` | ``_clean/lib/matplotlib/axes/_base.py:680`` | ``_AxesBase.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:972`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.formatter.limits`` | ``_clean/lib/matplotlib/rcsetup.py:999`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:801`` | ``test_single_date`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_units.py:85`` | ``test_numpy_facade`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:431`` | ``ScalarFormatter.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.formatter.use_locale`` | ``_clean/lib/matplotlib/__init__.py:982`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1001`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:713`` | ``TestScalarFormatter.test_use_locale`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:503`` | ``ScalarFormatter.set_useLocale`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:1449`` | ``test_ticklabel_format`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:1470`` | ``test_ticklabel_format`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.formatter.use_mathtext`` | ``_clean/lib/matplotlib/rcsetup.py:1002`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:506`` | ``test_mathtext_cmr10_minus_sign`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:697`` | ``TestScalarFormatter.test_useMathText`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:765`` | ``TestScalarFormatter.test_mathtext_ticks`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:777`` | ``TestScalarFormatter.test_cmr10_substitutions`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_usetex.py:58`` | ``test_mathdefault`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:544`` | ``ScalarFormatter.set_useMathText`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1391`` | ``EngFormatter.set_useMathText`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:1452`` | ``test_ticklabel_format`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:1473`` | ``test_ticklabel_format`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.formatter.min_exponent`` | ``_clean/lib/matplotlib/rcsetup.py:1004`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:856`` | ``TestLogFormatterMathtext.test_min_exponent`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1054`` | ``LogFormatterMathtext.__call__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.formatter.useoffset`` | ``_clean/lib/matplotlib/rcsetup.py:1005`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:690`` | ``TestScalarFormatter.test_use_offset`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:422`` | ``ScalarFormatter.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:1447`` | ``test_ticklabel_format`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:1468`` | ``test_ticklabel_format`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.formatter.offset_threshold`` | ``_clean/lib/matplotlib/rcsetup.py:1006`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:424`` | ``ScalarFormatter.__init__`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.spines.left`` | ``_clean/lib/matplotlib/rcsetup.py:977`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6060`` | ``test_rc_spines`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.spines.bottom`` | ``_clean/lib/matplotlib/rcsetup.py:979`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6063`` | ``test_rc_spines`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.spines.top`` | ``_clean/lib/matplotlib/rcsetup.py:980`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6062`` | ``test_rc_spines`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.spines.right`` | ``_clean/lib/matplotlib/rcsetup.py:978`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6061`` | ``test_rc_spines`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.unicode_minus`` | ``_clean/lib/matplotlib/pyplot.py:728`` | ``xkcd`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1007`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:666`` | ``TestScalarFormatter.test_unicode_minus`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:739`` | ``TestScalarFormatter.test_format_data`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:1294`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:1346`` | ``TestEngFormatter.test_params`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:249`` | ``Formatter.fix_minus`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.prop_cycle`` | ``_clean/lib/matplotlib/_layoutgrid.py:518`` | ``plot_children`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:237`` | ``_process_plot_var_args.set_prop_cycle`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/colors.py:292`` | ``to_rgba`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1010`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colors.py:1241`` | ``test_cn`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colors.py:1246`` | ``test_cn`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colors.py:1253`` | ``test_cn`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_lines.py:242`` | ``test_lw_scaling`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_lines.py:405`` | ``test_markevery_prop_cycle`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.xmargin`` | ``_clean/lib/matplotlib/axes/_base.py:1290`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1014`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.ymargin`` | ``_clean/lib/matplotlib/axes/_base.py:1291`` | ``_AxesBase.__clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1015`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.zmargin`` | ``_clean/lib/matplotlib/rcsetup.py:1016`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axes3d.py:979`` | ``Axes3D.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes.autolimit_mode`` | ``_clean/lib/matplotlib/rcsetup.py:1013`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6447`` | ``test_auto_numticks_log`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6879`` | ``test_log_margins`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:70`` | ``TestMultipleLocator.test_view_limits`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:79`` | ``TestMultipleLocator.test_view_limits_round_numbers`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1821`` | ``LinearLocator.view_limits`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:1865`` | ``MultipleLocator.view_limits`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:2080`` | ``MaxNLocator._raw_ticks`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:2143`` | ``MaxNLocator.view_limits`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:2394`` | ``LogLocator.view_limits`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/ticker.py:2570`` | ``SymmetricalLogLocator.view_limits`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``polaraxes.grid`` | ``_clean/lib/matplotlib/projections/polar.py:838`` | ``PolarAxes.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1018`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes3d.grid`` | ``_clean/lib/matplotlib/rcsetup.py:1019`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axes3d.py:982`` | ``Axes3D.clear`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes3d.xaxis.panecolor`` | ``_clean/lib/matplotlib/rcsetup.py:1021`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:2147`` | ``test_panecolor_rcparams`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes3d.yaxis.panecolor`` | ``_clean/lib/matplotlib/rcsetup.py:1022`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:2148`` | ``test_panecolor_rcparams`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | ``axes3d.zaxis.panecolor`` | ``_clean/lib/matplotlib/rcsetup.py:1023`` | ``None`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/tests/test_axes3d.py:2149`` | ``test_panecolor_rcparams`` | + +-------------------------------------+---------------------------------------------------------------+--------------------------------------------------------+ + +10 AXIS +------- + +.. table:: + + +-------------------------+--------------------------------------------------+--------------------------+ + | ``xaxis.labellocation`` | ``_clean/lib/matplotlib/axes/_base.py:3453`` | ``_AxesBase.set_xlabel`` | + +-------------------------+--------------------------------------------------+--------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:968`` | ``None`` | + +-------------------------+--------------------------------------------------+--------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:114`` | ``test_label_loc_rc`` | + +-------------------------+--------------------------------------------------+--------------------------+ + | ``yaxis.labellocation`` | ``_clean/lib/matplotlib/axes/_base.py:3701`` | ``_AxesBase.set_ylabel`` | + +-------------------------+--------------------------------------------------+--------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:969`` | ``None`` | + +-------------------------+--------------------------------------------------+--------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:115`` | ``test_label_loc_rc`` | + +-------------------------+--------------------------------------------------+--------------------------+ + +11 DATES +-------- + +.. table:: + + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.year`` | ``_clean/lib/matplotlib/dates.py:886`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:963`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1030`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.month`` | ``_clean/lib/matplotlib/dates.py:887`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:964`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1031`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.day`` | ``_clean/lib/matplotlib/dates.py:888`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:965`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1032`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.hour`` | ``_clean/lib/matplotlib/dates.py:889`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:966`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1033`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.minute`` | ``_clean/lib/matplotlib/dates.py:890`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:967`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1034`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:303`` | ``test_locator_set_formatter`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.second`` | ``_clean/lib/matplotlib/dates.py:891`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:968`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1035`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.autoformatter.microsecond`` | ``_clean/lib/matplotlib/dates.py:892`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/dates.py:969`` | ``AutoDateFormatter.__init__`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1036`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.epoch`` | ``_clean/lib/matplotlib/dates.py:316`` | ``get_epoch`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1029`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:46`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.converter`` | ``_clean/lib/matplotlib/dates.py:1878`` | ``_SwitchableDateConverter._get_converter`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1038`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:1245`` | ``test_change_converter`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:1254`` | ``test_change_converter`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:1262`` | ``test_change_converter`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | ``date.interval_multiples`` | ``_clean/lib/matplotlib/dates.py:1879`` | ``_SwitchableDateConverter._get_converter`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1040`` | ``None`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:1266`` | ``test_change_interval_multiples`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_dates.py:1275`` | ``test_change_interval_multiples`` | + +------------------------------------+----------------------------------------------------+---------------------------------------------+ + +12 TICKS +-------- + +.. table:: + + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.top`` | ``_clean/lib/matplotlib/axes/_base.py:705`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:720`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1084`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6091`` | ``test_rc_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6111`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.bottom`` | ``_clean/lib/matplotlib/axes/_base.py:706`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:721`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1085`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6091`` | ``test_rc_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6112`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.labeltop`` | ``_clean/lib/matplotlib/axes/_base.py:707`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:722`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1086`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_subplots.py:172`` | ``test_subplots_hide_ticklabels`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.labelbottom`` | ``_clean/lib/matplotlib/axes/_base.py:709`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:724`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1087`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_subplots.py:172`` | ``test_subplots_hide_ticklabels`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.major.size`` | ``_clean/lib/matplotlib/pyplot.py:730`` | ``xkcd`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1088`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.minor.size`` | ``_clean/lib/matplotlib/rcsetup.py:1089`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.major.width`` | ``_clean/lib/matplotlib/pyplot.py:731`` | ``xkcd`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1090`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:123`` | ``Axis.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.minor.width`` | ``_clean/lib/matplotlib/rcsetup.py:1091`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:126`` | ``Axis.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.major.pad`` | ``_clean/lib/matplotlib/rcsetup.py:1092`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.minor.pad`` | ``_clean/lib/matplotlib/rcsetup.py:1093`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.color`` | ``_clean/lib/matplotlib/axis.py:2216`` | ``XAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1094`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7781`` | ``test_xtickcolor_is_not_xticklabelcolor`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7805`` | ``test_xaxis_offsetText_color`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axis_artist.py:970`` | ``AxisArtist._init_offsetText`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.labelcolor`` | ``_clean/lib/matplotlib/axis.py:2215`` | ``XAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:2218`` | ``XAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1095`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7782`` | ``test_xtickcolor_is_not_xticklabelcolor`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7801`` | ``test_xaxis_offsetText_color`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7806`` | ``test_xaxis_offsetText_color`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.labelsize`` | ``_clean/lib/matplotlib/axes/_axes.py:3252`` | ``Axes.pie`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:2225`` | ``XAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1101`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7826`` | ``test_relative_ticklabel_sizes`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/tests/test_axes_grid1.py:70`` | ``test_twin_axes_empty_and_removed`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.direction`` | ``_clean/lib/matplotlib/rcsetup.py:1102`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6991`` | ``test_tick_padding_tightbbox`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.minor.visible`` | ``_clean/lib/matplotlib/axes/_base.py:1285`` | ``_AxesBase.__clear`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/colorbar.py:523`` | ``Colorbar._draw_all`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1096`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/scale.py:109`` | ``LinearScale.set_default_locators_and_formatters`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/scale.py:194`` | ``FuncScale.set_default_locators_and_formatters`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:551`` | ``test_minorticks_on_rcParams_both`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:431`` | ``test_cbar_minorticks_for_rc_xyminortickvisible`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:438`` | ``test_cbar_minorticks_for_rc_xyminortickvisible`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:1533`` | ``test_minorticks_rc`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.major.top`` | ``_clean/lib/matplotlib/axes/_base.py:720`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:723`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1099`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.major.bottom`` | ``_clean/lib/matplotlib/axes/_base.py:721`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:725`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1100`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6114`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.minor.top`` | ``_clean/lib/matplotlib/axes/_base.py:705`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:708`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1097`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.minor.bottom`` | ``_clean/lib/matplotlib/axes/_base.py:706`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:710`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1098`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6114`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``xtick.alignment`` | ``_clean/lib/matplotlib/axes/_base.py:962`` | ``_AxesBase.get_xaxis_text1_transform`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:988`` | ``_AxesBase.get_xaxis_text2_transform`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1103`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.left`` | ``_clean/lib/matplotlib/axes/_base.py:711`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:726`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1105`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6092`` | ``test_rc_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6112`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.right`` | ``_clean/lib/matplotlib/axes/_base.py:712`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:727`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1106`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6092`` | ``test_rc_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6111`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.labelleft`` | ``_clean/lib/matplotlib/axes/_base.py:713`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:728`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1107`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_subplots.py:173`` | ``test_subplots_hide_ticklabels`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.labelright`` | ``_clean/lib/matplotlib/axes/_base.py:715`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:730`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1108`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_subplots.py:173`` | ``test_subplots_hide_ticklabels`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.major.size`` | ``_clean/lib/matplotlib/pyplot.py:732`` | ``xkcd`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1109`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.minor.size`` | ``_clean/lib/matplotlib/rcsetup.py:1110`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.major.width`` | ``_clean/lib/matplotlib/pyplot.py:733`` | ``xkcd`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1111`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:124`` | ``Axis.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.minor.width`` | ``_clean/lib/matplotlib/rcsetup.py:1112`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:127`` | ``Axis.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.major.pad`` | ``_clean/lib/matplotlib/rcsetup.py:1113`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.minor.pad`` | ``_clean/lib/matplotlib/rcsetup.py:1114`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.color`` | ``_clean/lib/matplotlib/axis.py:2456`` | ``YAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1115`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7791`` | ``test_ytickcolor_is_not_yticklabelcolor`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7816`` | ``test_yaxis_offsetText_color`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.labelcolor`` | ``_clean/lib/matplotlib/axis.py:2455`` | ``YAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:2458`` | ``YAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1116`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7792`` | ``test_ytickcolor_is_not_yticklabelcolor`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7812`` | ``test_yaxis_offsetText_color`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7817`` | ``test_yaxis_offsetText_color`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.labelsize`` | ``_clean/lib/matplotlib/axis.py:2466`` | ``YAxis._init`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1122`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:7827`` | ``test_relative_ticklabel_sizes`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/tests/test_axes_grid1.py:70`` | ``test_twin_axes_empty_and_removed`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.direction`` | ``_clean/lib/matplotlib/rcsetup.py:1123`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6992`` | ``test_tick_padding_tightbbox`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.minor.visible`` | ``_clean/lib/matplotlib/axes/_base.py:1287`` | ``_AxesBase.__clear`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/colorbar.py:520`` | ``Colorbar._draw_all`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1117`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/scale.py:110`` | ``LinearScale.set_default_locators_and_formatters`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/scale.py:195`` | ``FuncScale.set_default_locators_and_formatters`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:552`` | ``test_minorticks_on_rcParams_both`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:432`` | ``test_cbar_minorticks_for_rc_xyminortickvisible`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:437`` | ``test_cbar_minorticks_for_rc_xyminortickvisible`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ticker.py:1534`` | ``test_minorticks_rc`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.major.left`` | ``_clean/lib/matplotlib/axes/_base.py:726`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:729`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1120`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6115`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.major.right`` | ``_clean/lib/matplotlib/axes/_base.py:727`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:731`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1121`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.minor.left`` | ``_clean/lib/matplotlib/axes/_base.py:711`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:714`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1118`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:6115`` | ``test_rc_major_minor_tick`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.minor.right`` | ``_clean/lib/matplotlib/axes/_base.py:712`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:716`` | ``_AxesBase.__init__`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1119`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | ``ytick.alignment`` | ``_clean/lib/matplotlib/axes/_base.py:1042`` | ``_AxesBase.get_yaxis_text1_transform`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/axes/_base.py:1068`` | ``_AxesBase.get_yaxis_text2_transform`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1124`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:1758`` | ``test_bar_tick_label_multiple_old_alignment`` | + +-------------------------+--------------------------------------------------------------------+-----------------------------------------------------+ + +13 GRIDS +-------- + +.. table:: + + +--------------------+---------------------------------------------------------+-------------------+ + | ``grid.color`` | ``_clean/lib/matplotlib/axis.py:142`` | ``Tick.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1127`` | ``None`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axislines.py:436`` | ``Axes.clear`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:115`` | ``Axis.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | ``grid.linestyle`` | ``_clean/lib/matplotlib/axis.py:144`` | ``Tick.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1128`` | ``None`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axislines.py:437`` | ``Axes.clear`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:117`` | ``Axis.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | ``grid.linewidth`` | ``_clean/lib/matplotlib/axis.py:146`` | ``Tick.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:726`` | ``xkcd`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1129`` | ``None`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/mpl_toolkits/axisartist/axislines.py:438`` | ``Axes.clear`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axis3d.py:116`` | ``Axis.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | ``grid.alpha`` | ``_clean/lib/matplotlib/axis.py:148`` | ``Tick.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:151`` | ``Tick.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/axis.py:153`` | ``Tick.__init__`` | + +--------------------+---------------------------------------------------------+-------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1130`` | ``None`` | + +--------------------+---------------------------------------------------------+-------------------+ + +14 LEGEND +--------- + +.. table:: + + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.loc`` | ``_clean/lib/matplotlib/legend.py:509`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1044`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:1071`` | ``test_warn_big_data_best_loc`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:599`` | ``test_rcparams_legend_loc`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.frameon`` | ``_clean/lib/matplotlib/legend.py:591`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1062`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.framealpha`` | ``_clean/lib/matplotlib/legend.py:583`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1064`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:190`` | ``test_alpha_rcparam`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.facecolor`` | ``_clean/lib/matplotlib/legend.py:565`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1080`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.edgecolor`` | ``_clean/lib/matplotlib/legend.py:570`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1081`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.fancybox`` | ``_clean/lib/matplotlib/legend.py:575`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1043`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.shadow`` | ``_clean/lib/matplotlib/legend.py:455`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1060`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.numpoints`` | ``_clean/lib/matplotlib/legend.py:445`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1051`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.scatterpoints`` | ``_clean/lib/matplotlib/legend.py:447`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1053`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:229`` | ``test_rc`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.markerscale`` | ``_clean/lib/matplotlib/legend.py:446`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1059`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.fontsize`` | ``_clean/lib/matplotlib/legend.py:426`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/legend.py:430`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/offsetbox.py:981`` | ``AnchoredOffsetbox.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/offsetbox.py:985`` | ``AnchoredOffsetbox.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/offsetbox.py:1381`` | ``AnnotationBbox.set_fontsize`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1054`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.labelcolor`` | ``_clean/lib/matplotlib/legend.py:636`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/legend.py:637`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1057`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:955`` | ``test_legend_labelcolor_rcparam_single`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:968`` | ``test_legend_labelcolor_rcparam_linecolor`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:981`` | ``test_legend_labelcolor_rcparam_markeredgecolor`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:994`` | ``test_legend_labelcolor_rcparam_markeredgecolor_short`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:1007`` | ``test_legend_labelcolor_rcparam_markerfacecolor`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:1020`` | ``test_legend_labelcolor_rcparam_markerfacecolor_short`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.title_fontsize`` | ``_clean/lib/matplotlib/legend.py:613`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/legend.py:618`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1055`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:730`` | ``test_legend_title_fontprop_fontsize`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_legend.py:738`` | ``test_legend_title_fontprop_fontsize`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.borderpad`` | ``_clean/lib/matplotlib/legend.py:448`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1067`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.labelspacing`` | ``_clean/lib/matplotlib/legend.py:449`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1069`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.handlelength`` | ``_clean/lib/matplotlib/legend.py:450`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1071`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.handleheight`` | ``_clean/lib/matplotlib/legend.py:451`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1073`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.handletextpad`` | ``_clean/lib/matplotlib/legend.py:452`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1075`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.borderaxespad`` | ``_clean/lib/matplotlib/legend.py:453`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1077`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | ``legend.columnspacing`` | ``_clean/lib/matplotlib/legend.py:454`` | ``Legend.__init__`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1079`` | ``None`` | + +---------------------------+------------------------------------------------------+----------------------------------------------------------+ + +15 FIGURE +--------- + +.. table:: + + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.titlesize`` | ``_clean/lib/matplotlib/figure.py:388`` | ``FigureBase.suptitle`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1134`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:1528`` | ``test_rcparams`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.titleweight`` | ``_clean/lib/matplotlib/figure.py:388`` | ``FigureBase.suptitle`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1135`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:1527`` | ``test_rcparams`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.labelsize`` | ``_clean/lib/matplotlib/figure.py:398`` | ``FigureBase.supxlabel`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:408`` | ``FigureBase.supylabel`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1138`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:1526`` | ``test_rcparams`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.labelweight`` | ``_clean/lib/matplotlib/figure.py:398`` | ``FigureBase.supxlabel`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:409`` | ``FigureBase.supylabel`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1139`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:1525`` | ``test_rcparams`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.figsize`` | ``_clean/lib/matplotlib/figure.py:2509`` | ``Figure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:3584`` | ``figaspect`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1142`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:107`` | ``test_rcparams_update`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:108`` | ``test_rcparams_update`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:118`` | ``test_rcparams_init`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.dpi`` | ``_clean/lib/matplotlib/figure.py:2511`` | ``Figure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1143`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_qt.py:449`` | ``test_double_resize`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_qt.py:450`` | ``test_double_resize`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:550`` | ``test_connection_patch_fig`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.facecolor`` | ``_clean/lib/matplotlib/backends/web_backend/nbagg_uat.ipynb:378`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:2513`` | ``Figure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/image.py:1685`` | ``imsave`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:725`` | ``xkcd`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1144`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.edgecolor`` | ``_clean/lib/matplotlib/figure.py:2175`` | ``SubFigure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:2515`` | ``Figure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1145`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.frameon`` | ``_clean/lib/matplotlib/figure.py:2177`` | ``SubFigure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:2517`` | ``Figure.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1146`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.max_open_warning`` | ``_clean/lib/matplotlib/pyplot.py:886`` | ``figure`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1148`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:44`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:322`` | ``test_too_many_figures`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ~figure.raise\ :sub:`window`\ ~ | \ | \ | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.subplot.left`` | ``_clean/lib/matplotlib/rcsetup.py:1151`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:120`` | ``test_rcupdate`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:126`` | ``test_rcupdate`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.subplot.right`` | ``_clean/lib/matplotlib/rcsetup.py:1152`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.subplot.bottom`` | ``_clean/lib/matplotlib/rcsetup.py:1153`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.subplot.top`` | ``_clean/lib/matplotlib/rcsetup.py:1154`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.subplot.wspace`` | ``_clean/lib/matplotlib/gridspec.py:513`` | ``GridSpecFromSubplotSpec.get_subplot_params`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1155`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/axes_divider.py:444`` | ``AxesDivider.new_horizontal`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/tests/test_axes_grid1.py:375`` | ``test_axes_locatable_position`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.subplot.hspace`` | ``_clean/lib/matplotlib/gridspec.py:510`` | ``GridSpecFromSubplotSpec.get_subplot_params`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1156`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/mpl_toolkits/axes_grid1/axes_divider.py:469`` | ``AxesDivider.new_vertical`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.autolayout`` | ``_clean/lib/matplotlib/figure.py:2604`` | ``Figure.set_layout_engine`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:2766`` | ``Figure.set_tight_layout`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1147`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:665`` | ``test_tightlayout_autolayout_deconflict`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.constrained_layout.use`` | ``_clean/lib/matplotlib/figure.py:2606`` | ``Figure.set_layout_engine`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:2803`` | ``Figure.set_constrained_layout`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1158`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_bbox_tight.py:170`` | ``test_bbox_inches_fixed_aspect`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_constrainedlayout.py:295`` | ``test_constrained_layout15`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.constrained_layout.h_pad`` | ``_clean/lib/matplotlib/layout_engine.py:230`` | ``ConstrainedLayoutEngine.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1164`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.constrained_layout.w_pad`` | ``_clean/lib/matplotlib/layout_engine.py:229`` | ``ConstrainedLayoutEngine.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1165`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.constrained_layout.hspace`` | ``_clean/lib/matplotlib/layout_engine.py:232`` | ``ConstrainedLayoutEngine.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1161`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | ``figure.constrained_layout.wspace`` | ``_clean/lib/matplotlib/layout_engine.py:231`` | ``ConstrainedLayoutEngine.__init__`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1162`` | ``None`` | + +--------------------------------------+---------------------------------------------------------------------+------------------------------------------------+ + +16 IMAGES +--------- + +.. table:: + + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.aspect`` | ``_clean/lib/matplotlib/axes/_axes.py:5649`` | ``Axes.imshow`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:947`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.interpolation`` | ``_clean/lib/matplotlib/image.py:777`` | ``_ImageBase.set_interpolation`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:948`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:1017`` | ``test_imshow`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:1041`` | ``test_imshow_clip`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:4997`` | ``test_specgram`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5033`` | ``test_specgram_magnitude`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5070`` | ``test_specgram_angle`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:967`` | ``test_imshow_bignumbers`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:979`` | ``test_imshow_bignumbers_real`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.cmap`` | ``_clean/lib/matplotlib/cm.py:200`` | ``ColormapRegistry.get_cmap`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/cm.py:285`` | ``_get_cmap`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/cm.py:719`` | ``_ensure_cmap`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:949`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colors.py:128`` | ``test_colormaps_get_cmap`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:14`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.lut`` | ``_clean/lib/matplotlib/cm.py:29`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:950`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.origin`` | ``_clean/lib/matplotlib/contour.py:758`` | ``ContourSet.__init__`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/image.py:262`` | ``_ImageBase.__init__`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/image.py:1640`` | ``imsave`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:951`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5113`` | ``test_specgram_origin_rcparam`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_axes.py:5119`` | ``test_specgram_origin_rcparam`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.resample`` | ``_clean/lib/matplotlib/image.py:817`` | ``_ImageBase.set_resample`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:952`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | ``image.composite_image`` | ``_clean/lib/matplotlib/backend_bases.py:497`` | ``RendererBase.option_image_nocomposite`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/_backend_pdf_ps.py:98`` | ``RendererPDFPSBase.option_image_nocomposite`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:606`` | ``RendererPgf.option_image_nocomposite`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_svg.py:647`` | ``RendererSVG.option_image_nocomposite`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:955`` | ``None`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:124`` | ``test_composite_image`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:128`` | ``test_composite_image`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:1047`` | ``test_composite`` | + +---------------------------+----------------------------------------------------------+------------------------------------------------+ + +17 CONTOUR PLOTS +---------------- + +.. table:: + + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | ``contour.negative_linestyle`` | ``_clean/lib/matplotlib/contour.py:767`` | ``ContourSet.__init__`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:958`` | ``None`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:665`` | ``test_negative_linestyles`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | ``contour.corner_mask`` | ``_clean/lib/matplotlib/contour.py:1406`` | ``QuadContourSet._process_args`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:959`` | ``None`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | ``contour.linewidth`` | ``_clean/lib/matplotlib/contour.py:1229`` | ``ContourSet._process_linewidths`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:960`` | ``None`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_contour.py:365`` | ``test_contour_linewidth`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | ``contour.algorithm`` | ``_clean/lib/matplotlib/contour.py:1396`` | ``QuadContourSet._process_args`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/contour.py:1397`` | ``QuadContourSet._process_args`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:961`` | ``None`` | + +--------------------------------+-----------------------------------------------------+------------------------------------+ + +18 ERRORBAR PLOTS +----------------- + +.. table:: + + +----------------------+----------------------------------------------------+---------------------+ + | ``errorbar.capsize`` | ``_clean/lib/matplotlib/axes/_axes.py:2371`` | ``Axes.bar`` | + +----------------------+----------------------------------------------------+---------------------+ + | \ | ``_clean/lib/matplotlib/axes/_axes.py:3575`` | ``Axes.errorbar`` | + +----------------------+----------------------------------------------------+---------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:964`` | ``None`` | + +----------------------+----------------------------------------------------+---------------------+ + | \ | ``_clean/lib/mpl_toolkits/mplot3d/axes3d.py:3028`` | ``Axes3D.errorbar`` | + +----------------------+----------------------------------------------------+---------------------+ + +19 HISTOGRAM PLOTS +------------------ + +.. table:: + + +---------------+----------------------------------------------+------------------------+ + | ``hist.bins`` | ``_clean/lib/matplotlib/axes/_axes.py:6681`` | ``Axes.hist`` | + +---------------+----------------------------------------------+------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:792`` | ``validate_hist_bins`` | + +---------------+----------------------------------------------+------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:864`` | ``None`` | + +---------------+----------------------------------------------+------------------------+ + +20 SCATTER PLOTS +---------------- + +.. table:: + + +------------------------+----------------------------------------------+------------------------------------+ + | ``scatter.marker`` | ``_clean/lib/matplotlib/axes/_axes.py:4613`` | ``Axes.scatter`` | + +------------------------+----------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1026`` | ``None`` | + +------------------------+----------------------------------------------+------------------------------------+ + | ``scatter.edgecolors`` | ``_clean/lib/matplotlib/axes/_axes.py:4367`` | ``Axes._parse_scatter_color_args`` | + +------------------------+----------------------------------------------+------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1027`` | ``None`` | + +------------------------+----------------------------------------------+------------------------------------+ + +21 AGG RENDERING +---------------- + +.. table:: + + +------------------------+-------------------------------------------------------+---------------------------+ + | ``agg.path.chunksize`` | ``_clean/lib/matplotlib/backends/backend_agg.py:111`` | ``RendererAgg.draw_path`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:136`` | ``RendererAgg.draw_path`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:176`` | ``RendererAgg.draw_path`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:182`` | ``RendererAgg.draw_path`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1213`` | ``None`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_agg.py:218`` | ``test_chunksize`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_agg.py:314`` | ``test_chunksize_fails`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_agg.py:319`` | ``test_chunksize_fails`` | + +------------------------+-------------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_agg.py:324`` | ``test_chunksize_fails`` | + +------------------------+-------------------------------------------------------+---------------------------+ + +22 PATHS +-------- + +.. table:: + + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | ``path.simplify`` | ``_clean/lib/matplotlib/path.py:206`` | ``Path._update_values`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1208`` | ``None`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_simplification.py:457`` | ``test_throw_rendering_complexity_exceeded`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | ``path.simplify_threshold`` | ``_clean/lib/matplotlib/backends/backend_agg.py:138`` | ``RendererAgg.draw_path`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:139`` | ``RendererAgg.draw_path`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:167`` | ``RendererAgg.draw_path`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:168`` | ``RendererAgg.draw_path`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/path.py:187`` | ``Path._fast_from_codes_and_verts`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/path.py:203`` | ``Path._update_values`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1209`` | ``None`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | ``path.snap`` | ``_clean/lib/matplotlib/artist.py:632`` | ``Artist.get_snap`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1210`` | ``None`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | ``path.sketch`` | ``_clean/lib/matplotlib/artist.py:211`` | ``Artist.__init__`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:720`` | ``xkcd`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1211`` | ``None`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:166`` | ``test_xkcd_no_cm`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:168`` | ``test_xkcd_no_cm`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:170`` | ``test_xkcd_no_cm`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:174`` | ``test_xkcd_cm`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:176`` | ``test_xkcd_cm`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_style.py:177`` | ``test_xkcd_cm`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | ``path.effects`` | ``_clean/lib/matplotlib/artist.py:212`` | ``Artist.__init__`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/pyplot.py:721`` | ``xkcd`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1212`` | ``None`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:85`` | ``test_patheffects`` | + +-----------------------------+------------------------------------------------------------+----------------------------------------------+ + +23 SAVING FIGURES +----------------- + +.. table:: + + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.dpi`` | ``_clean/lib/matplotlib/animation.py:1016`` | ``Animation.save`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2116`` | ``FigureCanvasBase.print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/figure.py:3325`` | ``Figure.savefig`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1168`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:68`` | ``test_interp_nearest_vs_none`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:115`` | ``test_imshow_antialiased`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:131`` | ``test_imshow_zoom`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_image.py:546`` | ``test_rasterize_dpi`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:402`` | ``test_genfrac_displaystyle`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:550`` | ``test_connection_patch_fig`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_patches.py:614`` | ``test_shadow`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/texmanager.py:328`` | ``TexManager.get_grey`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.facecolor`` | ``_clean/lib/matplotlib/animation.py:1060`` | ``Animation.save`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_agg.py:526`` | ``FigureCanvasAgg.print_jpg`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/web_backend/nbagg_uat.ipynb:379`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/image.py:1683`` | ``imsave`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1169`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:74`` | ``test_null_movie_writer`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.edgecolor`` | ``_clean/lib/matplotlib/rcsetup.py:1170`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.format`` | ``_clean/lib/matplotlib/backend_bases.py:2202`` | ``FigureCanvasBase.get_default_filetype`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/image.py:1625`` | ``imsave`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1172`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.bbox`` | ``_clean/lib/matplotlib/animation.py:1054`` | ``Animation.save`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/animation.py:1073`` | ``Animation.save`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2137`` | ``FigureCanvasBase.print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1173`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_spines.py:143`` | ``test_spines_black_axes`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.pad_inches`` | ``_clean/lib/matplotlib/backend_bases.py:2162`` | ``FigureCanvasBase.print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1174`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_spines.py:142`` | ``test_spines_black_axes`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.directory`` | ``_clean/lib/matplotlib/backends/_backend_tk.py:857`` | ``NavigationToolbar2Tk.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/_backend_tk.py:876`` | ``NavigationToolbar2Tk.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk3.py:364`` | ``NavigationToolbar2GTK3.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk3.py:376`` | ``NavigationToolbar2GTK3.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk3.py:377`` | ``NavigationToolbar2GTK3.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk4.py:367`` | ``NavigationToolbar2GTK4.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk4.py:380`` | ``NavigationToolbar2GTK4.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_gtk4.py:382`` | ``NavigationToolbar2GTK4.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_macosx.py:122`` | ``NavigationToolbar2Mac.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_macosx.py:129`` | ``NavigationToolbar2Mac.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_macosx.py:130`` | ``NavigationToolbar2Mac.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_qt.py:773`` | ``NavigationToolbar2QT.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_qt.py:791`` | ``NavigationToolbar2QT.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_wx.py:1106`` | ``NavigationToolbar2Wx.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_wx.py:1122`` | ``NavigationToolbar2Wx.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_wx.py:1123`` | ``NavigationToolbar2Wx.save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1176`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:45`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_macosx.py:38`` | ``test_savefig_rcparam`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_macosx.py:46`` | ``test_savefig_rcparam`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.transparent`` | ``_clean/lib/matplotlib/figure.py:3327`` | ``Figure.savefig`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1177`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_figure.py:568`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``savefig.orientation`` | ``_clean/lib/matplotlib/rcsetup.py:1171`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``tk.window_focus`` | ``_clean/lib/matplotlib/backends/_backend_tk.py:46`` | ``_restore_foreground_window_at_end`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1179`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:45`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``ps.papersize`` | ``_clean/lib/matplotlib/backends/backend_ps.py:837`` | ``FigureCanvasPS._print_ps`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1182`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``ps.useafm`` | ``_clean/lib/matplotlib/backends/backend_ps.py:250`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:621`` | ``RendererPS.draw_text`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:925`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:930`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1185`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:31`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:62`` | ``test_savefig_to_stringio`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:181`` | ``test_useafm`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``ps.usedistiller`` | ``_clean/lib/matplotlib/backends/backend_ps.py:875`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:967`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:974`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:977`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:1064`` | ``FigureCanvasPS._print_figure_tex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_ps.py:1069`` | ``FigureCanvasPS._print_figure_tex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:438`` | ``validate_ps_distiller`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1187`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:27`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:28`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:58`` | ``test_savefig_to_stringio`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``ps.distiller.res`` | ``_clean/lib/matplotlib/backends/backend_ps.py:1153`` | ``gs_distill`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1188`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``ps.fonttype`` | ``_clean/lib/matplotlib/backends/backend_ps.py:935`` | ``FigureCanvasPS._print_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1189`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:227`` | ``test_type42_font_without_prep`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_ps.py:235`` | ``test_fonttype`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pdf.compression`` | ``_clean/lib/matplotlib/backends/backend_pdf.py:560`` | ``Stream.__init__`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:562`` | ``Stream.__init__`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:574`` | ``Stream._writeHeader`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:1738`` | ``PdfFile._writeImg`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1190`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:31`` | ``test_use14corefonts`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pdf.fonttype`` | ``_clean/lib/matplotlib/backends/backend_pdf.py:1141`` | ``PdfFile.embedTTF`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:2193`` | ``RendererPdf.draw_mathtext`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:2343`` | ``RendererPdf.draw_text`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1194`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:54`` | ``test_embed_fonts`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:532`` | ``test_font_scaling`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:832`` | ``test_pdf_font42_kerning`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:839`` | ``test_pdf_chars_beyond_bmp`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_ttconv.py:12`` | ``test_truetype_conversion`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pdf.use14corefonts`` | ``_clean/lib/matplotlib/backends/backend_pdf.py:903`` | ``PdfFile.fontName`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:1942`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:2337`` | ``RendererPdf.draw_text`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1193`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pdf.py:27`` | ``test_use14corefonts`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pdf.inheritcolor`` | ``_clean/lib/matplotlib/backends/backend_pdf.py:2526`` | ``GraphicsContextPdf.rgb_cmd`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pdf.py:2534`` | ``GraphicsContextPdf.fillcolor_cmd`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1191`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``svg.image_inline`` | ``_clean/lib/matplotlib/backends/backend_svg.py:941`` | ``RendererSVG.draw_image`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1201`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``svg.fonttype`` | ``_clean/lib/matplotlib/backends/backend_svg.py:1265`` | ``RendererSVG.draw_text`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1202`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_svg.py:80`` | ``test_bold_font_output_with_none_fonttype`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_svg.py:223`` | ``test_svgnone_with_data_coordinates`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_svg.py:580`` | ``test_svg_font_string`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_colorbar.py:1082`` | ``test_nonorm`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:226`` | ``test_mathtext_rendering_svgastext`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_mathtext.py:424`` | ``test_mathtext_fallback`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:138`` | ``test_Bug_2543`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_text.py:637`` | ``test_text_as_text_opacity`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``svg.hashsalt`` | ``_clean/lib/matplotlib/backends/backend_svg.py:466`` | ``RendererSVG._make_id`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1203`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/testing/__init__.py:25`` | ``set_reproducibility_for_testing`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_determinism.py:19`` | ``_save_figure`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:582`` | ``test_deprecation`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:585`` | ``test_deprecation`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:586`` | ``test_deprecation`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:587`` | ``test_deprecation`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pgf.rcfonts`` | ``_clean/lib/matplotlib/backends/backend_pgf.py:48`` | ``_get_preamble`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1197`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:83`` | ``test_xelatex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:104`` | ``test_pdflatex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:122`` | ``test_rcupdate`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:128`` | ``test_rcupdate`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:150`` | ``test_pathclip`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:169`` | ``test_mixedmode`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:179`` | ``test_bbox_inches`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:199`` | ``test_pdf_pages`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pgf.preamble`` | ``_clean/lib/matplotlib/backends/backend_pgf.py:44`` | ``_get_preamble`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1198`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:106`` | ``test_pdflatex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:130`` | ``test_rcupdate`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:137`` | ``test_rcupdate`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``pgf.texsystem`` | ``_clean/lib/matplotlib/backends/backend_pgf.py:46`` | ``_get_preamble`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:98`` | ``_escape_and_apply_props`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:191`` | ``LatexManager._build_latex_header`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:249`` | ``LatexManager.__init__`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:272`` | ``LatexManager._setup_latex_process`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:825`` | ``FigureCanvasPgf.print_pdf`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/backends/backend_pgf.py:954`` | ``PdfPages._run_latex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1196`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:105`` | ``test_pdflatex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:123`` | ``test_rcupdate`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:129`` | ``test_rcupdate`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:200`` | ``test_pdf_pages`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:244`` | ``test_pdf_pages_metadata_check`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_backend_pgf.py:333`` | ``test_minus_signs_with_tex`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | ``docstring.hardcopy`` | ``_clean/lib/matplotlib/artist.py:1853`` | ``kwdoc`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1206`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + | \ | ``_clean/lib/matplotlib/style/core.py:46`` | ``None`` | + +-------------------------+--------------------------------------------------------------------+----------------------------------------------+ + +24 INTERACTIVE KEYMAPS +---------------------- + +.. table:: + + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.fullscreen`` | ``_clean/lib/matplotlib/backend_bases.py:2408`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:415`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1216`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.home`` | ``_clean/lib/matplotlib/backend_bases.py:2409`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:606`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1217`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.back`` | ``_clean/lib/matplotlib/backend_bases.py:2410`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2554`` | ``button_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:615`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1218`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.forward`` | ``_clean/lib/matplotlib/backend_bases.py:2411`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_bases.py:2556`` | ``button_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:624`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1219`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.pan`` | ``_clean/lib/matplotlib/backend_bases.py:2412`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:834`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1220`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.zoom`` | ``_clean/lib/matplotlib/backend_bases.py:2413`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:715`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1221`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.save`` | ``_clean/lib/matplotlib/backend_bases.py:2414`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:640`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1222`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.help`` | ``_clean/lib/matplotlib/backend_tools.py:899`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1229`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.quit`` | ``_clean/lib/matplotlib/backend_bases.py:2415`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:365`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1223`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.quit_all`` | ``_clean/lib/matplotlib/backend_bases.py:2416`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:375`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1224`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.grid`` | ``_clean/lib/matplotlib/backend_bases.py:2417`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:385`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:392`` | ``ToolGrid.trigger`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1225`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.grid_minor`` | ``_clean/lib/matplotlib/backend_bases.py:2418`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:400`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:407`` | ``ToolMinorGrid.trigger`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1226`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.yscale`` | ``_clean/lib/matplotlib/backend_bases.py:2419`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:442`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1227`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.xscale`` | ``_clean/lib/matplotlib/backend_bases.py:2420`` | ``key_press_handler`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/backend_tools.py:452`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1228`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | ``keymap.copy`` | ``_clean/lib/matplotlib/backend_tools.py:939`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1230`` | ``None`` | + +-----------------------+-------------------------------------------------+---------------------------+ + +25 ANIMATION +------------ + +.. table:: + + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.html`` | ``_clean/lib/matplotlib/animation.py:1347`` | ``Animation._repr_html_`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1233`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:226`` | ``test_animation_repr_html`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.writer`` | ``_clean/lib/matplotlib/animation.py:993`` | ``Animation.save`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/animation.py:1272`` | ``Animation.to_html5_video`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1237`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:225`` | ``test_animation_repr_html`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:259`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:277`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.codec`` | ``_clean/lib/matplotlib/animation.py:177`` | ``AbstractMovieWriter.__init__`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1238`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.bitrate`` | ``_clean/lib/matplotlib/animation.py:179`` | ``AbstractMovieWriter.__init__`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/animation.py:1274`` | ``Animation.to_html5_video`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1239`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.frame_format`` | ``_clean/lib/matplotlib/animation.py:389`` | ``FileMovieWriter.__init__`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1241`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:177`` | ``test_save_animation_smoketest`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_rcparams.py:207`` | ``test_animation_frame_formats`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.ffmpeg_path`` | ``_clean/lib/matplotlib/animation.py:516`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1244`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:248`` | ``test_movie_writer_registry`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:252`` | ``test_movie_writer_registry`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.ffmpeg_args`` | ``_clean/lib/matplotlib/animation.py:517`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1246`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.convert_path`` | ``_clean/lib/matplotlib/animation.py:615`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1248`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.convert_args`` | ``_clean/lib/matplotlib/animation.py:616`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1250`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | ``animation.embed_limit`` | ``_clean/lib/matplotlib/animation.py:722`` | ``HTMLWriter.__init__`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/animation.py:1261`` | ``Animation.to_html5_video`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/rcsetup.py:1236`` | ``None`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ + | \ | ``_clean/lib/matplotlib/tests/test_animation.py:266`` | ``test_embed_limit`` | + +----------------------------+-------------------------------------------------------+-----------------------------------+ pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy