File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change
8000
th> 7
7
help you get started with Matplotlib.
8
8
"""
9
9
10
- # sphinx_gallery_thumbnail_number = 4
10
+ # sphinx_gallery_thumbnail_number = 3
11
11
import matplotlib .pyplot as plt
12
12
import numpy as np
13
13
66
66
# number of :class:`~matplotlib.axes.Axes`, but will typically have
67
67
# at least one.
68
68
#
69
- # The easiest way to create a new figure is with pyplot:
70
-
71
- fig = plt .figure () # an empty figure with no Axes
72
- fig , ax = plt .subplots () # a figure with a single Axes
73
- fig , axs = plt .subplots (2 , 2 ) # a figure with a 2x2 grid of Axes
74
-
69
+ # The easiest way to create a new figure is with pyplot::
70
+ #
71
+ # fig = plt.figure() # an empty figure with no Axes
72
+ # fig, ax = plt.subplots() # a figure with a single Axes
73
+ # fig, axs = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes
74
+ #
75
75
# It's convenient to create the axes together with the figure, but you can
76
76
# also add axes later on, allowing for more complex axes layouts.
77
-
78
- ###############################################################################
77
+ #
79
78
# :class:`~matplotlib.axes.Axes`
80
79
# ------------------------------
81
80
#
You can’t perform that action at this time.
0 commit comments