File tree 5 files changed +18
-23
lines changed
images_contours_and_fields
5 files changed +18
-23
lines changed Original file line number Diff line number Diff line change 8
8
9
9
This example demonstrates two different APIs:
10
10
11
- 1. Setting the default
12
- :doc:`rc parameter</tutorials/introductory/customizing>`
13
- specifying the property cycle. This affects all subsequent axes
14
- (but not axes already created).
15
- 2. Setting the property cycle for a single pair of axes.
11
+ 1. Setting the default :doc:`rc parameter</tutorials/introductory/customizing>`
12
+ specifying the property cycle. This affects all subsequent axes (but not
13
+ axes already created).
14
+ 2. Setting the property cycle for a single pair of axes.
16
15
"""
17
16
from cycler import cycler
18
17
import numpy as np
Original file line number Diff line number Diff line change 4
4
=============
5
5
6
6
Test combinations of contouring, filled contouring, and image plotting.
7
- For contour labelling, see See also the
8
- :ref:`contour demo example
7
+ For contour labelling, see also the :doc:`contour demo example
9
8
</gallery/images_contours_and_fields/contour_demo>`.
10
9
11
10
The emphasis in this demo is on showing how to make contours register
12
- correctly on images, and on how to get both of them oriented as
13
- desired. In particular, note the usage of the
14
- :ref:`"origin" and "extent"
15
- </tutorials/intermediate/imshow_extent>`
16
- keyword arguments to imshow and contour.
11
+ correctly on images, and on how to get both of them oriented as desired.
12
+ In particular, note the usage of the :doc:`"origin" and "extent"
13
+ </tutorials/intermediate/imshow_extent>` keyword arguments to imshow and
14
+ contour.
17
15
"""
18
16
import matplotlib .pyplot as plt
19
17
import numpy as np
Original file line number Diff line number Diff line change 3
3
Demonstration of advanced quiver and quiverkey functions
4
4
========================================================
5
5
6
- Demonstrates some more advanced options for `~.axes.Axes.quiver`.
7
- For a simple example refer to
8
- :doc:`/gallery/images_contours_and_fields/quiver_simple_demo`.
6
+ Demonstrates some more advanced options for `~.axes.Axes.quiver`. For a simple
7
+ example refer to :doc:`/gallery/images_contours_and_fields/quiver_simple_demo`.
9
8
10
- Known problem: the plot autoscaling does not take into account
11
- the arrows, so those on the boundaries are often out of the picture.
12
- This is *not* an easy problem to solve in a perfectly general way.
13
- The workaround is to manually expand the Axes objects.
9
+ Known problem: the plot autoscaling does not take into account the arrows, so
10
+ those on the boundaries are often out of the picture. This is *not* an easy
11
+ problem to solve in a perfectly general way. The workaround is to manually
12
+ expand the Axes objects.
14
13
"""
15
14
import matplotlib .pyplot as plt
16
15
import numpy as np
Original file line number Diff line number Diff line change 3
3
Quiver Simple Demo
4
4
==================
5
5
6
- A simple example of a `~.axes.Axes.quiver` plot with a
7
- `~.axes.Axes.quiverkey`.
6
+ A simple example of a `~.axes.Axes.quiver` plot with a `~.axes.Axes.quiverkey`.
8
7
9
- For more advanced options refer to
8
+ For more advanced options refer to
10
9
:doc:`/gallery/images_contours_and_fields/quiver_demo`.
11
10
"""
12
11
import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change @@ -2574,7 +2574,7 @@ class PolygonSelector(_SelectorWidget):
2574
2574
if the mouse click is within `vertex_select_radius` pixels of the
2575
2575
vertex. The default radius is 15 pixels.
2576
2576
2577
- See Also
2577
+ Examples
2578
2578
--------
2579
2579
:doc:`/gallery/widgets/polygon_selector_demo`
2580
2580
"""
You can’t perform that action at this time.
0 commit comments