From 93a4821e0d0c39db699a13957feab378ee71a3ab Mon Sep 17 00:00:00 2001 From: "Marco A. Lopez-Sanchez" Date: Tue, 6 Feb 2024 10:46:21 +0100 Subject: [PATCH] Update Matplotlib_walkthrough.ipynb typo --- notebooks/Matplotlib_walkthrough.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/Matplotlib_walkthrough.ipynb b/notebooks/Matplotlib_walkthrough.ipynb index ff0d396..df5f428 100644 --- a/notebooks/Matplotlib_walkthrough.ipynb +++ b/notebooks/Matplotlib_walkthrough.ipynb @@ -464,7 +464,7 @@ " - ``constrained_layout``: Automatically adjusts subplots and decorations such as legends and colour bars to fit optimally into the figure window, while preserving as far as possible the logical layout requested by the user. Bool, the default is false.\n", "\n", " > 👉 To control the resolution of the figure in pixels or centimeters, you need to play with the ``figsize`` and ``dpi`` parameters at the same time. For more details, see \n", - " https://matplotlib.org/stable/gallery/subplots_axes_and_figures/figure_size_units.html#\n", + " > https://matplotlib.org/stable/gallery/subplots_axes_and_figures/figure_size_units.html#\n", "\n", "For complex layouts, Matplotlib offers several options, but one of the simplest and, sadly, underused is the ``plt.subplot_mosaic()`` function, which works as follows" ]