@@ -31,7 +31,7 @@ is identical to ::
31
31
32
32
ax = plt.subplot(2, 2, 1)
33
33
34
- Note that, unlike matplotlib's subplot, the index starts from 0 in gridspec .
34
+ Note that, unlike matplotlib's subplot, the index starts from 0 in GridSpec .
35
35
36
36
To create a subplot that spans multiple cells, ::
37
37
@@ -66,7 +66,7 @@ is equal to ::
66
66
gs = gridspec.GridSpec(2, 2)
67
67
ax = plt.subplot(gs[0, 0])
68
68
69
- A gridspec instance provides array-like (2d or 1d) indexing that
69
+ A GridSpec instance provides array-like (2d or 1d) indexing that
70
70
returns the SubplotSpec instance. For, SubplotSpec that spans multiple
71
71
cells, use slice. ::
72
72
@@ -88,7 +88,7 @@ Adjust GridSpec layout
88
88
======================
89
89
90
90
When a GridSpec is explicitly used, you can adjust the layout
91
- parameters of subplots that are created from the gridspec . ::
91
+ parameters of subplots that are created from the GridSpec . ::
92
92
93
93
gs1 = gridspec.GridSpec(3, 3)
94
94
gs1.update(left=0.05, right=0.48, wspace=0.05)
@@ -132,8 +132,8 @@ parameters are set to that of the location of the given SubplotSpec. ::
132
132
A Complex Nested GridSpec using SubplotSpec
133
133
===========================================
134
134
135
- Here's a more sophisticated example of nested gridspec where we put
136
- a box around each cell of the outer 4x4 grid, by hiding appropriate
135
+ Here's a more sophisticated example of nested GridSpec where we put
136
+ a box around each cell of the outer 4x4 grid, by hiding appropriate
137
137
spines in each of the inner 3x3 grids.
138
138
139
139
.. plot :: users/plotting/examples/demo_gridspec06.py
0 commit comments