├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | *.egg-info/ 23 | .installed.cfg 24 | *.egg 25 | 26 | # PyInstaller 27 | # Usually these files are written by a python script from a template 28 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 29 | *.manifest 30 | *.spec 31 | 32 | # Installer logs 33 | pip-log.txt 34 | pip-delete-this-directory.txt 35 | 36 | # Unit test / coverage reports 37 | htmlcov/ 38 | .tox/ 39 | .coverage 40 | .coverage.* 41 | .cache 42 | nosetests.xml 43 | coverage.xml 44 | *,cover 45 | 46 | # Translations 47 | *.mo 48 | *.pot 49 | 50 | # Django stuff: 51 | *.log 52 | 53 | # Sphinx documentation 54 | docs/_build/ 55 | 56 | # PyBuilder 57 | target/ 58 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Notebook Index for Mastering matplotlib 2 | 3 | * [Book on Packt's site](https://www.packtpub.com/big-data-and-business-intelligence/mastering-matplotlib) 4 | * [On Amazon](http://www.amazon.com/dp/1783987545/) 5 | 6 | ## Chapters 7 | 8 | ### nbviewer 9 | 10 | * 1 - [Getting up to Speed](http://nbviewer.ipython.org/github/masteringmatplotlib/preview/blob/master/notebooks/mmpl-preview.ipynb) 11 | * 2 - [matplotlib Architecture](http://nbviewer.ipython.org/github/masteringmatplotlib/architecture/blob/master/notebooks/mmpl-arch.ipynb) 12 | * 3 - [matplotlib APIs](http://nbviewer.ipython.org/github/masteringmatplotlib/apis/blob/master/notebooks/mmpl-apis.ipynb) 13 | * 4 - [Event Handling and Interactive Plots](http://nbviewer.ipython.org/github/masteringmatplotlib/interaction/blob/master/notebooks/mmpl-interaction.ipynb) 14 | * 5 - [High-level Plotting and Analysis](http://nbviewer.ipython.org/github/masteringmatplotlib/high-level/blob/master/notebooks/mmpl-high-level.ipynb) 15 | * 6 - [Advanced Customization and Configuration](http://nbviewer.ipython.org/github/masteringmatplotlib/custom-and-config/blob/master/notebooks/mmpl-custom-and-config.ipynb) 16 | * 7 - [Deploying matplotlib in Cloud Environments](http://nbviewer.ipython.org/github/masteringmatplotlib/cloud-deploy/blob/master/notebooks/mmpl-cloud-deploy.ipynb) 17 | * 8 - [matplotlib and Big Data](http://nbviewer.ipython.org/github/masteringmatplotlib/big-data/blob/master/notebooks/mmpl-big-data.ipynb) 18 | * 9 - [Clustering for matplotlib](http://nbviewer.ipython.org/github/masteringmatplotlib/clustering/blob/master/notebooks/mmpl-clustering.ipynb) 19 | 20 | ### Github 21 | 22 | * 1 - [Getting up to Speed](https://github.com/masteringmatplotlib/preview) 23 | * 2 - [matplotlib Architecture](https://github.com/masteringmatplotlib/architecture) 24 | * 3 - [matplotlib APIs](https://github.com/masteringmatplotlib/apis) 25 | * 4 - [Event Handling and Interactive Plots](https://github.com/masteringmatplotlib/interaction) 26 | * 5 - [High-level Plotting and Analysis](https://github.com/masteringmatplotlib/high-level) 27 | * 6 - [Advanced Customization and Configuration](https://github.com/masteringmatplotlib/custom-and-config) 28 | * 7 - [Deploying matplotlib in Cloud Environments](https://github.com/masteringmatplotlib/cloud-deploy) 29 | * 8 - [matplotlib and Big Data](https://github.com/masteringmatplotlib/big-data) 30 | * 9 - [Clustering for matplotlib](https://github.com/masteringmatplotlib/clustering) 31 | 32 | ## Supplemental 33 | 34 | * [notebooks](https://github.com/masteringmatplotlib/notebooks) 35 | * [docker images](https://github.com/masteringmatplotlib/docker) 36 | * [includes](https://github.com/masteringmatplotlib/includes) 37 | * [scripts](https://github.com/masteringmatplotlib/scripts) 38 | --------------------------------------------------------------------------------