8000 Fixing Sentence Case on Section Titles in users_explain by mattymo30 · Pull Request #27325 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fixing Sentence Case on Section Titles in users_explain #27325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions galleries/users_explain/animations/animations.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import matplotlib.animation as animation

# %%
# Animation Classes
# Animation classes
# =================
#
# The animation process in Matplotlib can be thought of in 2 different ways:
Expand Down Expand Up @@ -158,7 +158,7 @@ def update(frame):
plt.show()

# %%
# Animation Writers
# Animation writers
# =================
#
# Animation objects can be saved to disk using various multimedia writers
Expand Down
4 changes: 2 additions & 2 deletions galleries/users_explain/artists/patheffects_guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# automatically followed with the "normal" effect, whereas the latter
# explicitly defines the two path effects to draw.
#
# Making an artist stand out
# Making an Artist stand out
# --------------------------
#
# One nice way of making artists visually stand out is to draw an outline in
Expand Down Expand Up @@ -93,7 +93,7 @@
# its user interface.
#
#
# Greater control of the path effect artist
# Greater control of the path effect Artist
# -----------------------------------------
#
# As already mentioned, some of the path effects operate at a lower level
Expand Down
4 changes: 2 additions & 2 deletions galleries/users_explain/axes/autoscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

.. _autoscale:

Autoscaling
===========
Autoscaling Axis
================

The limits on an axis can be set manually (e.g. ``ax.set_xlim(xmin, xmax)``)
or Matplotlib can set them automatically based on the data already on the axes.
Expand Down
2 changes: 1 addition & 1 deletion galleries/users_explain/axes/axes_ticks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.. _user_axes_ticks:

==========
Axis Ticks
Axis ticks
==========

The x and y Axis on each Axes have default tick "locators" and "formatters"
Expand Down
2 changes: 1 addition & 1 deletion galleries/users_explain/axes/colorbar_placement.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. redirect-from:: /gallery/subplots_axes_and_figures/colorbar_placement

=================
Placing Colorbars
Placing colorbars
=================

Colorbars indicate the quantitative extent of image data. Placing in
Expand Down
2 changes: 1 addition & 1 deletion galleries/users_explain/axes/constrainedlayout_guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.. _constrainedlayout_guide:

========================
Constrained Layout Guide
Constrained layout guide
========================

Use *constrained layout* to fit plots within your figure cleanly.
Expand Down
2 changes: 1 addition & 1 deletion galleries/users_explain/axes/legend_guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
plt.show()

# %%
# Legend Handlers
# Legend handlers
# ===============
#
# In order to create legend entries, handles are given as an argument to an
Expand Down
5 changes: 3 additions & 2 deletions galleries/users_explain/axes/tight_layout_guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. _tight_layout_guide:

==================
Tight Layout guide
Tight layout guide
==================

How to use tight-layout to fit plots within your figure cleanly.
Expand All @@ -17,6 +17,7 @@
An alternative to *tight_layout* is :ref:`constrained_layout
<constrainedlayout_guide>`.


Simple example
==============

Expand Down Expand Up @@ -209,7 +210,7 @@ def example_plot(ax, fontsize=12):


# %%
# Legends and Annotations
# Legends and annotations
# =======================
#
# Pre Matplotlib 2.2, legends and annotations were excluded from the bounding
Expand Down
6 changes: 3 additions & 3 deletions galleries/users_explain/colors/colorbar_only.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
.. redirect-from:: /tutorials/colors/colorbar_only

====================
Standalone colorbars
====================
=============================
Customized Colorbars Tutorial
=============================

This tutorial shows how to build and customize standalone colorbars, i.e.
without an attached plot.
Expand Down
6 changes: 3 additions & 3 deletions galleries/users_explain/colors/colormap-manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

.. _colormap-manipulation:

******************
Creating Colormaps
******************
********************************
Creating Colormaps in Matplotlib
********************************

Matplotlib has a number of built-in colormaps accessible via
`.matplotlib.colormaps`. There are also external libraries like
Expand Down
2 changes: 1 addition & 1 deletion galleries/users_explain/colors/colormapnorms.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.. _colormapnorms:

Colormap Normalization
Colormap normalization
======================

Objects that use colormaps by default linearly map the colors in the
Expand Down
6 changes: 3 additions & 3 deletions galleries/users_explain/colors/colormaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

.. _colormaps:

******************
Choosing Colormaps
******************
********************************
Choosing Colormaps in Matplotlib
********************************

Matplotlib has a number of built-in colormaps accessible via
`.matplotlib.colormaps`. There are also external libraries that
Expand Down
2 changes: 1 addition & 1 deletion galleries/users_explain/toolkits/axes_grid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ The examples below show what you can do with ImageGrid.
:target: /gallery/axes_grid1/demo_axes_grid.html
:align: center

AxesDivider Class
AxesDivider class
-----------------

Behind the scenes, ImageGrid (and RGBAxes, described below) rely on
Expand Down
6 changes: 3 additions & 3 deletions galleries/users_explain/toolkits/axisartist.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Here is an example that uses ParasiteAxes.
:target: /gallery/axisartist/demo_parasite_axes2.html
:align: center

Curvilinear Grid
Curvilinear grid
----------------

The motivation behind the AxisArtist module is to support a curvilinear grid
Expand Down Expand Up @@ -298,7 +298,7 @@ HowTo
To change the pad between ticklabels and axis label,
axis.label.set_pad method.

Rotation and Alignment of TickLabels
Rotation and alignment of TickLabels
====================================

This is also quite different from standard Matplotlib and can be
Expand Down Expand Up @@ -566,7 +566,7 @@ way is to add it as an item of Axes's axis attribute.::

See the first example of this page.

Current Limitations and TODO's
Current limitations and TODO's
==============================

The code need more refinement. Here is a incomplete list of issues and TODO's
Expand Down
0