@@ -35,7 +35,7 @@ ratio. For example, displaying images of a same size with some fixed
3535padding between them cannot be easily done in matplotlib. AxesGrid is
3636used in such case.
3737
38- .. plot :: mpl_toolkits /axes_grid/figures /simple_axesgrid.py
38+ .. plot :: mpl_examples /axes_grid/simple_axesgrid.py
3939 :include-source:
4040
4141* The postion of each axes is determined at the drawing time (see
@@ -49,7 +49,7 @@ used in such case.
4949 height. The widths (height) of the axes in the same row (column) are
5050 scaled according to their view limits (xlim or ylim).
5151
52- .. plot :: mpl_toolkits/axes_grid/figures /simple_axesgrid2.py
52+ .. plot :: mpl_toolkits/axes_grid/examples /simple_axesgrid2.py
5353 :include-source:
5454
5555* xaxis are shared among axes in a same column. Similarly, yaxis are
@@ -137,7 +137,7 @@ attribute.
137137
138138The examples below show what you can do with AxesGrid.
139139
140- .. plot :: mpl_toolkits/axes_grid/figures /demo_axes_grid.py
140+ .. plot :: mpl_toolkits/axes_grid/examples /demo_axes_grid.py
141141
142142
143143RGB Axes
@@ -158,7 +158,7 @@ yaxis of each axes are shared. ::
158158 origin="lower", interpolation="nearest")
159159
160160
161- .. plot :: mpl_toolkits/axes_grid/figures /simple_rgb.py
161+ .. plot :: mpl_toolkits/axes_grid/examples /simple_rgb.py
162162
163163
164164
@@ -219,7 +219,7 @@ The "scatter_hist.py" example in mpl can be rewritten using
219219See the full source code below.
220220
221221
222- .. plot :: mpl_toolkits/axes_grid/figures /scatter_hist.py
222+ .. plot :: mpl_toolkits/axes_grid/examples /scatter_hist.py
223223
224224
225225The scatter_hist using the AxesDivider has some advantage over the
@@ -246,7 +246,7 @@ axes.
246246Example 1. twinx
247247----------------
248248
249- .. plot :: mpl_toolkits/axes_grid/figures /parasite_simple.py
249+ .. plot :: mpl_toolkits/axes_grid/examples /parasite_simple.py
250250 :include-source:
251251
252252Example 2. twin
@@ -257,7 +257,7 @@ x-limit in the host axes, the x-limit of the parasite axes will change
257257accordingly.
258258
259259
260- .. plot :: mpl_toolkits/axes_grid/figures /parasite_simple2.py
260+ .. plot :: mpl_toolkits/axes_grid/examples /parasite_simple2.py
261261
262262
263263
@@ -290,13 +290,13 @@ For example, you can hide right, and top axis by ::
290290 ax.axis["top"].set_visible(False)
291291
292292
293- .. plot :: mpl_toolkits/axes_grid/figures /simple_axisline3.py
293+ .. plot :: mpl_toolkits/axes_grid/examples /simple_axisline3.py
294294
295295
296296SubplotZero gives you two more additional (floating?) axis of x=0 and
297297y=0 (in data coordinate)
298298
299- .. plot :: mpl_toolkits/axes_grid/figures /simple_axisline2.py
299+ .. plot :: mpl_toolkits/axes_grid/examples /simple_axisline2.py
300300 :include-source:
301301
302302
@@ -315,7 +315,7 @@ axis. ::
315315 r"$\pi$", r"$\frac{3}{2}\pi$", r"$2\pi$"])
316316
317317
318- .. plot :: mpl_toolkits/axes_grid/figures /simple_axisline4.py
318+ .. plot :: mpl_toolkits/axes_grid/examples /simple_axisline4.py
319319
320320
321321AxisLine Axes lets you create a custom axis, ::
@@ -330,7 +330,7 @@ AxisLine Axes lets you create a custom axis, ::
330330And, you can use it with parasiteAxes.
331331
332332
333- .. plot :: mpl_toolkits/axes_grid/figures /demo_parasite_axes2.py
333+ .. plot :: mpl_toolkits/axes_grid/examples /demo_parasite_axes2.py
334334
335335
336336AnchoredArtists
@@ -343,7 +343,7 @@ limited support for an arbitrary transform. For example, the ellipse
343343in the example below will have width and height in the data
344344coordinate.
345345
346- .. plot :: mpl_toolkits/axes_grid/figures /simple_anchored_artists.py
346+ .. plot :: mpl_toolkits/axes_grid/examples /simple_anchored_artists.py
347347 :include-source:
348348
349349
@@ -377,15 +377,15 @@ some factor. For example, ::
377377creates an inset axes whose data scale is half of the parent axes.
378378Here is complete examples.
379379
380- .. plot :: mpl_toolkits/axes_grid/figures /inset_locator_demo.py
380+ .. plot :: mpl_toolkits/axes_grid/examples /inset_locator_demo.py
381381
382382For example, :func: `zoomed_inset_axes ` can be used when you want the
383383inset represents the zoom-up of the small portion in the parent axes.
384384And :mod: `~mpl_toolkits/axes_grid/inset_locator ` provides a helper
385385function :func: `mark_inset ` to mark the location of the area
386386represented by the inset axes.
387387
388- .. plot :: mpl_toolkits/axes_grid/figures /inset_locator_demo2.py
388+ .. plot :: mpl_toolkits/axes_grid/examples /inset_locator_demo2.py
389389 :include-source:
390390
391391
@@ -395,6 +395,6 @@ Curvelinear Grid
395395You can draw a cuvelinear grid and ticks. Also a floating axis can be
396396created. See :ref: `axislines-manual ` for more details.
397397
398- .. plot :: mpl_toolkits/axes_grid/figures /demo_floating_axis.py
398+ .. plot :: mpl_toolkits/axes_grid/examples /demo_floating_axis.py
399399
400400
0 commit comments