Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update examples/README.txt. #8099

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 1 commit into from
Feb 19, 2017
Merged
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
53 changes: 26 additions & 27 deletions examples/README.txt
Original file line number Diff line number Diff line change
@@ -1,45 +1,44 @@
matplotlib examples
Matplotlib examples
===================

There are a variety of ways to use matplotlib, and most of them are
There are a variety of ways to use Matplotlib, and most of them are
illustrated in the examples in this directory.

Probably the most common way people use matplotlib is with the
procedural interface, which follows the matlab/IDL/mathematica
approach of using simple procedures like "plot" or "title" to modify
the current figure. These examples are included in the "pylab_examples"
directory. If you want to write more robust scripts, e.g., for
production use or in a web application server, you will probably want
to use the matplotlib API for full control. These examples are found
in the "api" directory. Below is a brief description of the different
directories found here:
Probably the most common way people use Matplotlib is with the
procedural interface, which follows the MATLAB/IDL/Mathematica approach
of using simple procedures like "plot" or "title" to modify the current
figure. These examples are included in the "pylab_examples" directory.
If you want to write more robust scripts, e.g., for production use or in
a web application server, you will probably want to use the Matplotlib
API for full control. These examples are found in the "api" directory.
Below is a brief description of the different directories found here:

* animation - dynamic plots, see the tutorial at
http://www.scipy.org/Cookbook/Matplotlib/Animations
* animation - Dynamic plots, see the documentation at
http://matplotlib.org/api/animation_api.html

* api - working with the matplotlib API directory.
* api - working with the Matplotlib API directly.

* axes_grid1 - Examples related to the axes_grid1 toolkit
* axes_grid1 - Examples related to the axes_grid1 toolkit.

* axisartist - Examples related to the axisartist toolkit
* axisartist - Examples related to the axisartist toolkit.

* event_handling - how to interact with your figure, mouse presses,
* event_handling - How to interact with your figure, mouse presses,
key presses, object picking, etc.

* misc - some miscellaneous examples. some demos for loading and
working with record arrays
* misc - Miscellaneous examples. Some demos for loading and working
with record arrays.

* mplot3d - 3D examples
* mplot3d - 3D examples.

* pylab_examples - the interface to matplotlib similar to matlab
* pylab_examples - The interface to Matplotlib similar to MATLAB.

* tests - tests used by matplotlib developers to check functionality
* tests - Tests used by Matplotlib developers to check functionality.
(These tests are still sometimes useful, but mostly developers should
use the nosetests which perform automatic image comparison.)
use the pytest tests which perform automatic image comparison.)

* units - working with unit data an custom types in matplotlib
* units - Working with unit data and custom types in Matplotlib.

* user_interfaces - using matplotlib in a GUI application, e.g.,
TkInter, WXPython, pygtk, pyqt widgets
* user_interfaces - Using Matplotlib in a GUI application, e.g.,
Tkinter, wxPython, PyGObject, PyQt widgets.

* widgets - Examples using interactive widgets
* widgets - Examples using interactive widgets.