├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Andrew Mendez 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awesome-matplotlib 2 | A curated list of awesome repos and tutorials to develop great matplotlib graphs and diagrams 3 | 4 | * [Matplotlib 3.0 Cookbook]( https://github.com/PacktPublishing/Matplotlib-3.0-Cookbook) - https://github.com/PacktPublishing/Matplotlib-3.0-Cookbook 5 | * [matplotlib_for_papers]( https://github.com/jbmouret/matplotlib_for_papers) - Creating publication-quality figures with Matplotlib 6 | * [matplotlib4papers](https://github.com/amarasovic/matplotlib4papers/) - Matplotlib examples to present results. 7 | * [taming matplotlib](https://github.com/brohrer/taming_matplotlib) - Code and images for tutorials for getting the most out of Matplotlib 8 | * [Official Matplotlib cheat sheets](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) - Official Matplotlib cheat sheets. 9 | * [matplotlib-tutorial](https://github.com/rougier/matplotlib-tutorial) - Matplotlib tutorial for beginner. 10 | * [Navigating Matplotlib: Get matplotlib to do just what you want]( https://end-to-end-machine-learning.teachable.com/p/navigating-matplotlib-tutorial-how-to/) 11 | * [Chapter 4: Developing Visualizations for Publishing Quality](https://github.com/PacktPublishing/Matplotlib-3.0-Cookbook/blob/master/Chapter04/Chapter%204%20-%20Developing%20Visualizations%20For%20Publishing%20Quality.ipynb) 12 | * [Chapter 6: Plotting with Advanced Features](https://github.com/PacktPublishing/Matplotlib-3.0-Cookbook/blob/master/Chapter06/Chapter%206%20-%20Plotting%20with%20Advanced%20Features.ipynb) 13 | * [Chapter 8: Saving the Figure in different formats](https://github.com/PacktPublishing/Matplotlib-3.0-Cookbook/blob/master/Chapter08/C[…]08%20-%20Saving%20the%20Figure%20in%20Different%20Formats.ipynb) 14 | * [133. How to Navigate Matplotlib matplotlib course](https://e2eml.school/133) 15 | * [Implementation of typographic and design principles in matplotlib and iPython notebook](https://nbviewer.jupyter.org/gist/olgabot/5357268) 16 | --------------------------------------------------------------------------------