Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Module5_OddsAndEnds/Matplotlib.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down