From cbdb339915e957e7fa6d56204d814fc38ad41e8a Mon Sep 17 00:00:00 2001 From: David Mascharka Date: Wed, 10 Jun 2020 09:48:41 -0700 Subject: [PATCH] Fix typo --- docs/Module5_OddsAndEnds/Matplotlib.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Module5_OddsAndEnds/Matplotlib.ipynb b/docs/Module5_OddsAndEnds/Matplotlib.ipynb index d32eb066..a0f9a4cd 100644 --- a/docs/Module5_OddsAndEnds/Matplotlib.ipynb +++ b/docs/Module5_OddsAndEnds/Matplotlib.ipynb @@ -72,7 +72,7 @@ "metadata": {}, "source": [ "## Creating Figures and Axes with `pyplot.subplots`\n", - "There are many different wasy to create blank figure and axes objects in Matplotlib. Here, we will introduce the function `pyplot.subplots`, which creates a figure that contains axes on which data is plotted. We will see that the keyword argument `figsize` can be used to control the size of the figure, and that the keyword arguments `ncols` and `nrows` can be used to specify the grid on which the axes will be laid out within the figure.\n", + "There are many different ways to create blank figure and axes objects in Matplotlib. Here, we will introduce the function `pyplot.subplots`, which creates a figure that contains axes on which data is plotted. We will see that the keyword argument `figsize` can be used to control the size of the figure, and that the keyword arguments `ncols` and `nrows` can be used to specify the grid on which the axes will be laid out within the figure.\n", "\n", "In Matplotlib, the `Figure` object is used to contain one or more sets of `Axes` objects. Data is plotted within a given set of axes. The `subplots` function can be used to create a figure along with a specified layout of axes. By default, `subplots` will create a figure with a single set of axes; calling it will return the figure object and its axes object in a tuple:\n", "\n",