Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

DOC: Reintroduce glossary#30782

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
timhoffm merged 3 commits intomatplotlib:mainfromtimhoffm:doc-glossary
Nov 26, 2025
Merged
Show file tree
Hide file tree
Changes fromall 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
44 changes: 44 additions & 0 deletionsdoc/users/glossary.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
========
Glossary
========

.. Note for glossary authors:
The glossary is primarily intended for Matplotlib's own concepts and
terminology, e.g. figure, artist, backend, etc. We don't want to list
general terms like "GUI framework", "event loop" or similar.
The glossary should contain a short definition of the term, aiming at
a high-level understanding. Use links to redirect to more comprehensive
explanations and API reference when possible.

This glossary defines concepts and terminology specific to Matplotlib.

.. glossary::

Figure
The outermost container for a Matplotlib graphic. Think of this as the
canvas to draw on.

This is implemented in the class `.Figure`. For more details see
:ref:`figure-intro`.

Axes
This is a container for what is often colloquially called a plot/chart/graph.
It's a data area with :term:`Axis`\ es, i.e. coordinate directions,
and includes data artists like lines, bars etc. as well as
decorations like title, axis labels, legend.

Since most "plotting operations" are realized as methods on `~.axes.Axes`
this is the object users will mostly interact with.

Note: The term *Axes* was taken over from MATLAB. Think of this as
a container spanned by the *x*- and *y*-axis, including decoration
and data.

Axis
A direction with a scale. The scale defines the mapping from
data coordinates to screen coordinates. The Axis also includes
the ticks and axis label.

Artist
The base class for all graphical element that can be drawn.
Examples are Lines, Rectangles, Text, Ticks, Legend, Axes, ...
1 change: 1 addition & 0 deletionsdoc/users/index.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -103,3 +103,4 @@ Using Matplotlib

getting_started/index
../install/index
glossary

[8]ページ先頭

©2009-2025 Movatter.jp