├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── catalogue.py ├── legend.svg ├── matplotlib-cheatsheet.pdf ├── matplotlib-cheatsheet.png ├── reference-adjustments.py ├── reference-alignments.py ├── reference-collection.py ├── reference-colormap-diverging.py ├── reference-colormap-qualitative.py ├── reference-colormap-sequential-1.py ├── reference-colormap-sequential-2.py ├── reference-colormap-uniform.py ├── reference-line.py ├── reference-markers.py ├── reference-scales.py ├── reference-tick-formatters.py └── reference-tick-locators.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /catalogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/catalogue.py -------------------------------------------------------------------------------- /legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/legend.svg -------------------------------------------------------------------------------- /matplotlib-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/matplotlib-cheatsheet.pdf -------------------------------------------------------------------------------- /matplotlib-cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/matplotlib-cheatsheet.png -------------------------------------------------------------------------------- /reference-adjustments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-adjustments.py -------------------------------------------------------------------------------- /reference-alignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-alignments.py -------------------------------------------------------------------------------- /reference-collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-collection.py -------------------------------------------------------------------------------- /reference-colormap-diverging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-colormap-diverging.py -------------------------------------------------------------------------------- /reference-colormap-qualitative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-colormap-qualitative.py -------------------------------------------------------------------------------- /reference-colormap-sequential-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-colormap-sequential-1.py -------------------------------------------------------------------------------- /reference-colormap-sequential-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-colormap-sequential-2.py -------------------------------------------------------------------------------- /reference-colormap-uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-colormap-uniform.py -------------------------------------------------------------------------------- /reference-line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-line.py -------------------------------------------------------------------------------- /reference-markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-markers.py -------------------------------------------------------------------------------- /reference-scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-scales.py -------------------------------------------------------------------------------- /reference-tick-formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-tick-formatters.py -------------------------------------------------------------------------------- /reference-tick-locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/matplotlib-cheatsheet/HEAD/reference-tick-locators.py --------------------------------------------------------------------------------