.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/images_contours_and_fields/contour_label_demo.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. meta:: :keywords: codex .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_images_contours_and_fields_contour_label_demo.py: ================== Contour Label Demo ================== Illustrate some of the more advanced things that one can do with contour labels. See also the :doc:`contour demo example `. .. GENERATED FROM PYTHON SOURCE LINES 12-18 .. code-block:: Python import matplotlib.pyplot as plt import numpy as np import matplotlib.ticker as ticker .. GENERATED FROM PYTHON SOURCE LINES 19-20 Define our surface .. GENERATED FROM PYTHON SOURCE LINES 20-29 .. code-block:: Python delta = 0.025 x = np.arange(-3.0, 3.0, delta) y = np.arange(-2.0, 2.0, delta) X, Y = np.meshgrid(x, y) Z1 = np.exp(-X**2 - Y**2) Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) Z = (Z1 - Z2) * 2 .. GENERATED FROM PYTHON SOURCE LINES 30-31 Make contour labels with custom level formatters .. GENERATED FROM PYTHON SOURCE LINES 31-48 .. code-block:: Python # This custom formatter removes trailing zeros, e.g. "1.0" becomes "1", and # then adds a percent sign. def fmt(x): s = f"{x:.1f}" if s.endswith("0"): s = f"{x:.0f}" return rf"{s} \%" if plt.rcParams["text.usetex"] else f"{s} %" # Basic contour plot fig, ax = plt.subplots() CS = ax.contour(X, Y, Z) ax.clabel(CS, CS.levels, inline=True, fmt=fmt, fontsize=10) .. image-sg:: /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_001.png :alt: contour label demo :srcset: /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_001.png, /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_001_2_00x.png 2.00x :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 49-50 Label contours with arbitrary strings using a dictionary .. GENERATED FROM PYTHON SOURCE LINES 50-64 .. code-block:: Python fig1, ax1 = plt.subplots() # Basic contour plot CS1 = ax1.contour(X, Y, Z) fmt = {} strs = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh'] for l, s in zip(CS1.levels, strs): fmt[l] = s # Label every other level using strings ax1.clabel(CS1, CS1.levels[::2], inline=True, fmt=fmt, fontsize=10) .. image-sg:: /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_002.png :alt: contour label demo :srcset: /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_002.png, /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_002_2_00x.png 2.00x :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 65-66 Use a Formatter .. GENERATED FROM PYTHON SOURCE LINES 66-77 .. code-block:: Python fig2, ax2 = plt.subplots() CS2 = ax2.contour(X, Y, 100**Z, locator=plt.LogLocator()) fmt = ticker.LogFormatterMathtext() fmt.create_dummy_axis() ax2.clabel(CS2, CS2.levels, fmt=fmt) ax2.set_title("$100^Z$") plt.show() .. image-sg:: /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_003.png :alt: $100^Z$ :srcset: /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_003.png, /gallery/images_contours_and_fields/images/sphx_glr_contour_label_demo_003_2_00x.png 2.00x :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 78-87 .. admonition:: References The use of the following functions, methods, classes and modules is shown in this example: - `matplotlib.axes.Axes.contour` / `matplotlib.pyplot.contour` - `matplotlib.axes.Axes.clabel` / `matplotlib.pyplot.clabel` - `matplotlib.ticker.LogFormatterMathtext` - `matplotlib.ticker.TickHelper.create_dummy_axis` .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 1.367 seconds) .. _sphx_glr_download_gallery_images_contours_and_fields_contour_label_demo.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: contour_label_demo.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: contour_label_demo.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_