public
Description: python 2D plotting library
Homepage: http://matplotlib.sourceforge.net/
Clone URL: git://github.com/astraw/matplotlib.git
name age message
file CHANGELOG Sun Dec 20 16:46:59 -0800 2009 spines: default transform is in data units, add... [astraw]
directory CXX/ Sat Aug 22 16:26:25 -0700 2009 Merged revisions 7489-7490,7498-7502,7506,7517,... [jdh2358]
file DEVNOTES Fri Jul 21 14:07:28 -0700 2006 add notes about building a setuptools-compatibl... [astraw]
file FILETYPES Thu Sep 06 12:36:34 -0700 2007 Fix typo git-svn-id: https://matplotlib.svn.s... [mdboom]
file INSTALL Tue Jan 08 10:58:39 -0800 2008 fixed perrys typos git-svn-id: https://matplot... [jdh2358]
file INTERACTIVE Mon May 12 12:47:22 -0700 2003 lots of interactive fixes and an INTERACTIVE ho... [jdh2358]
file KNOWN_BUGS Thu Feb 19 12:27:35 -0800 2004 added freetype2 to agg git-svn-id: https://ma... [jdh2358]
file MANIFEST.in Thu Sep 17 14:44:44 -0700 2009 Merged revisions 7776,7778 via svnmerge from ht... [leejjoon]
file MIGRATION.txt Fri May 30 12:38:42 -0700 2008 Merged revisions 5312-5313,5329 via svnmerge fr... [jdh2358]
file Makefile Sat Aug 22 19:28:52 -0700 2009 Merged revisions 7533 via svnmerge from https:/... [jdh2358]
file README.osx Sat Aug 22 19:28:52 -0700 2009 Merged revisions 7533 via svnmerge from https:/... [jdh2358]
file README.txt Mon Sep 14 10:12:19 -0700 2009 Merged revisions 7751 via svnmerge from https:/... [mdboom]
file SEGFAULTS Thu Apr 20 06:38:17 -0700 2006 added help file for diagnosing segfaults git-s... [jdh2358]
file TODO Fri Dec 12 04:58:46 -0800 2008 Merged revisions 6581 via svnmerge from https:/... [mdboom]
file __init__.py Fri Mar 04 19:19:37 -0800 2005 fixed whacked init git-svn-id: https://matplo... [jdh2358]
directory agg24/ Sat Aug 22 16:26:25 -0700 2009 Merged revisions 7489-7490,7498-7502,7506,7517,... [jdh2358]
file boilerplate.py Sat Aug 15 14:24:01 -0700 2009 pyplot tracks current image at the figure and a... [efiring]
directory doc/ Sun Dec 13 04:06:07 -0800 2009 Address mathtext problem with non-BMP character... [jouni]
directory examples/ Sun Dec 20 19:49:59 -0800 2009 spines and ticks: implement smart bounds git-s... [astraw]
directory lib/ Sun Dec 20 19:49:59 -0800 2009 spines and ticks: implement smart bounds git-s... [astraw]
file license.py Thu Jun 07 06:30:30 -0700 2007 remove trailing spaces git-svn-id: https://mat... [nnemec]
directory license/ Tue Nov 27 17:31:59 -0800 2007 version bumps git-svn-id: https://matplotlib.s... [cmoad]
file make.osx Mon Nov 30 13:13:34 -0800 2009 add Matthew's OSX makefile patch git-svn-id: h... [jdh2358]
file matplotlibrc.template Sun Sep 27 05:41:23 -0700 2009 Add a savefig.extension rcparam in preparation ... [jouni]
directory release/ Thu Aug 20 09:19:22 -0700 2009 Use curl instead of wget in release/osx/Makefil... [jouni]
file setup.cfg.template Fri Dec 12 05:26:48 -0800 2008 removed configobj and enthought.traits git-sv... [dsdale]
file setup.py Sun Sep 06 15:47:08 -0700 2009 testing: convert some JPL units tests to simple... [astraw]
file setupegg.py Sat Sep 05 18:42:43 -0700 2009 testing: install KnownFailure nose plugin if us... [astraw]
file setupext.py Tue Dec 01 07:17:21 -0800 2009 Merged revisions 7989,7991 via svnmerge from ht... [mdboom]
directory src/ Thu Dec 03 11:24:30 -0800 2009 Merged revisions 8003 via svnmerge from https:/... [mdboom]
directory test/ Mon Nov 30 01:06:48 -0800 2009 buildbot test running: run tests in MPL root di... [astraw]
directory ttconv/ Thu Apr 30 06:28:54 -0700 2009 Merged revisions 7072 via svnmerge from https:/... [mdboom]
directory unit/ Sat Mar 28 20:43:49 -0700 2009 Added Karen Tracey's threading_test.py. git-s... [efiring]
README.txt
matplotlib for MacOS X 10.3.9 or later and Python 2.5 and Python 2.6

matplotlib is a python 2D plotting library which produces publication
quality figures in a variety of hardcopy formats and interactive
environments across platforms. matplotlib can be used in python
scripts, the python and ipython shell (ala matlab or mathematica), web
application servers, and various graphical user interface toolkits.

Home page: <http://matplotlib.sourceforge.net/>

Before running matplotlib, you must install numpy.  Binary installers
for all these packages are available here:

  <http://pythonmac.org/packages/py25-fat/index.html>.

*** Back Ends ***

You may use TkAgg or WXAgg back ends; Qt and GTK support is not
provided in this package. By default this matplotlib uses TkAgg
because Tcl/Tk is included with MacOS X.

If you wish to use WXAgg then:
* Install wxPython from:
  <http://pythonmac.org/packages/py25-fat/index.html>.
* Configure a matplotlibrc file, as described below.

For TkAgg you may use Apple's built-in Tcl/Tk or install your own 8.4.x

*** Configuring a matplotlibrc file ***

If you wish to change any matplotlib settings, create a file:
  ~/.matplotlib/matplotlibrc


that contains at least the following information. The values shown are
the defaults in the internal matplotlibrc file; change them as you see
fit:

# the default backend; one of GTK GTKAgg GTKCairo FltkAgg QtAgg TkAgg WXAgg
#     Agg Cairo GD GDK Paint PS PDF SVG Template
backend      : TkAgg
interactive  : False    # see http://matplotlib.sourceforge.net/interactive.html

See also
<http://matplotlib.sourceforge.net/users/customizing.html>