• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

animation/H03-May-2022-767481

axes_grid1/H03-May-2022-1,5751,008

axisartist/H03-May-2022-1,090735

color/H03-May-2022-652370

event_handling/H03-May-2022-1,8211,325

frontpage/H03-May-2022-12091

images_contours_and_fields/H03-May-2022-3,8381,986

lines_bars_and_markers/H03-May-2022-3,3762,011

misc/H03-May-2022-3,1472,136

mplot3d/H03-May-2022-1,557974

pie_and_polar_charts/H03-May-2022-601284

pyplots/H03-May-2022-1,164602

scales/H03-May-2022-565372

shapes_and_collections/H03-May-2022-1,340724

showcase/H03-May-2022-546330

specialty_plots/H03-May-2022-1,326853

statistics/H03-May-2022-2,0361,185

style_sheets/H03-May-2022-390267

subplots_axes_and_figures/H03-May-2022-2,3411,355

text_labels_and_annotations/H03-May-2022-3,5782,374

ticks_and_spines/H03-May-2022-1,499875

units/H03-May-2022-836607

user_interfaces/H03-May-2022-1,9781,361

userdemo/H03-May-2022-1,190826

widgets/H03-May-2022-1,040646

READMEH A D08-May-20211.7 KiB4329

README

1Matplotlib examples
2===================
3
4There are a variety of ways to use Matplotlib, and most of them are
5illustrated in the examples in this directory.
6
7Probably the most common way people use Matplotlib is with the
8procedural interface, which follows the MATLAB/IDL/Mathematica approach
9of using simple procedures like "plot" or "title" to modify the current
10figure.  These examples are included in the "pylab_examples" directory.
11If you want to write more robust scripts, e.g., for production use or in
12a web application server, you will probably want to use the Matplotlib
13API for full control.  These examples are found in the "api" directory.
14Below is a brief description of the different directories found here:
15
16  * animation - Dynamic plots, see the documentation at
17    http://matplotlib.org/api/animation_api.html
18
19  * axes_grid1 - Examples related to the axes_grid1 toolkit.
20
21  * axisartist - Examples related to the axisartist toolkit.
22
23  * event_handling - How to interact with your figure, mouse presses,
24    key presses, object picking, etc.
25
26  * misc - Miscellaneous examples.  Some demos for loading and working
27    with record arrays.
28
29  * mplot3d - 3D examples.
30
31  * pylab_examples - The interface to Matplotlib similar to MATLAB.
32
33  * tests - Tests used by Matplotlib developers to check functionality.
34    (These tests are still sometimes useful, but mostly developers should
35    use the pytest tests which perform automatic image comparison.)
36
37  * units - Working with unit data and custom types in Matplotlib.
38
39  * user_interfaces - Using Matplotlib in a GUI application, e.g.,
40    Tkinter, wxPython, PyGObject, PyQt widgets.
41
42  * widgets - Examples using interactive widgets.
43