Skip to content

Commit 48f87a7

Browse files
committed
DOC: Standardize example titles - part 2
Follow up to matplotlib#28544. As there: Following recommendations from matplotlib#28527, this improves example titles. Take this as an incremental improvement. I've changed what I saw at a glance when going through the examples once. Certainly, one could do further improvements, but that can be done in follow-ups.
1 parent e0e49ef commit 48f87a7

File tree

55 files changed

+164
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+164
-163
lines changed

galleries/examples/animation/pause_resume.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=================================
3-
Pausing and resuming an animation
4-
=================================
2+
=============================
3+
Pause and resume an animation
4+
=============================
55
66
This example showcases:
77

galleries/examples/axes_grid1/demo_axes_rgb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==================================
3-
Showing RGB channels using RGBAxes
4-
==================================
2+
===============================
3+
Show RGB channels using RGBAxes
4+
===============================
55
66
`~.axes_grid1.axes_rgb.RGBAxes` creates a layout of 4 Axes for displaying RGB
77
channels: one large Axes for the RGB image and 3 smaller Axes for the R, G, B

galleries/examples/axes_grid1/demo_colorbar_with_inset_locator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
22
.. _demo-colorbar-with-inset-locator:
33
4-
==============================================================
5-
Controlling the position and size of colorbars with Inset Axes
6-
==============================================================
4+
==========================================================
5+
Control the position and size of colorbars with Inset Axes
6+
==========================================================
77
88
This example shows how to control the position, height, and width of colorbars
99
using `~mpl_toolkits.axes_grid1.inset_locator.inset_axes`.

galleries/examples/axes_grid1/demo_imagegrid_aspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
=========================================
3-
Setting a fixed aspect on ImageGrid cells
3+
ImageGrid cells with a fixed aspect ratio
44
=========================================
55
"""
66

galleries/examples/color/custom_cmap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=========================================
3-
Creating a colormap from a list of colors
4-
=========================================
2+
=======================================
3+
Create a colormap from a list of colors
4+
=======================================
55
66
For more detail on creating and manipulating colormaps see
77
:ref:`colormap-manipulation`.

galleries/examples/images_contours_and_fields/image_annotated_heatmap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
===========================
3-
Creating annotated heatmaps
4-
===========================
2+
=================
3+
Annotated heatmap
4+
=================
55
66
It is often desirable to show data which depends on two independent
77
variables as a color coded image plot. This is often referred to as a

galleries/examples/lines_bars_and_markers/fill_between_alpha.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==============================
3-
Fill Between with transparency
4-
==============================
2+
==================================
3+
``fill_between`` with transparency
4+
==================================
55
66
The `~matplotlib.axes.Axes.fill_between` function generates a shaded
77
region between a min and max boundary that is useful for illustrating ranges.

galleries/examples/lines_bars_and_markers/fill_between_demo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==============================
3-
Filling the area between lines
4-
==============================
2+
===========================
3+
Fill the area between lines
4+
===========================
55
66
This example shows how to use `~.axes.Axes.fill_between` to color the area
77
between two lines.

galleries/examples/lines_bars_and_markers/fill_betweenx_demo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==================
3-
Fill Betweenx Demo
4-
==================
2+
=================
3+
``fill_betweenx``
4+
=================
55
66
Using `~.Axes.fill_betweenx` to color along the horizontal direction between
77
two curves.

galleries/examples/lines_bars_and_markers/line_demo_dash_control.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==============================
3-
Customizing dashed line styles
4-
==============================
2+
===============================
3+
Dashed line style configuration
4+
===============================
55
66
The dashing of a line is controlled via a dash sequence. It can be modified
77
using `.Line2D.set_dashes`.

0 commit comments

Comments
 (0)