Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fd766c commit ab05356Copy full SHA for ab05356
examples/axes_grid/demo_axes_grid.py
@@ -64,7 +64,7 @@ def demo_grid_with_each_cbar(fig):
64
A grid of 2x2 images. Each image has its own colorbar.
65
"""
66
67
- grid = AxesGrid(F, 143, # similar to subplot(143)
+ grid = AxesGrid(fig, 143, # similar to subplot(143)
68
nrows_ncols=(2, 2),
69
axes_pad=0.1,
70
label_mode="1",
@@ -92,7 +92,7 @@ def demo_grid_with_each_cbar_labelled(fig):
92
93
94
95
- grid = AxesGrid(F, 144, # similar to subplot(144)
+ grid = AxesGrid(fig, 144, # similar to subplot(144)
96
97
axes_pad=(0.45, 0.15),
98
0 commit comments