├── .gitignore ├── AnatomyOfMatplotlib-Part0-Intro2NumPy.ipynb ├── AnatomyOfMatplotlib-Part1-Figures_Subplots_and_layouts.ipynb ├── AnatomyOfMatplotlib-Part2-Plotting_Methods_Overview.ipynb ├── AnatomyOfMatplotlib-Part3-HowToSpeakMPL.ipynb ├── AnatomyOfMatplotlib-Part4-Limits_Legends_and_Layouts.ipynb ├── AnatomyOfMatplotlib-Part5-Artists.ipynb ├── AnatomyOfMatplotlib-Part6-mpl_toolkits.ipynb ├── COPYRIGHT.txt ├── README.md ├── Test Install.ipynb ├── assets └── bivariate_normal.npy ├── examples ├── bar_example.py ├── contour_example.py ├── example_utils.py ├── fill_example.py ├── imshow_example.py ├── pcolor_example.py ├── plot_example.py ├── scatter_example.py ├── statistical_example.py └── vector_example.py ├── exercises ├── 1.1-subplots_and_basic_plotting.py ├── 2.1-bar_and_fill_between.py ├── 2.2-vmin_vmax_imshow_and_colorbars.py ├── 3.1-colors.py ├── 3.2-markers.py ├── 3.3-properties.py ├── 3.4-arrows.py ├── 4.1-legends_and_scaling.py ├── 4.2-spines_ticks_and_subplot_spacing.py └── 5.1-goldstar.py ├── images ├── bar_example.png ├── contour_example.png ├── exercise_1-1.png ├── exercise_2.1-bar_and_fill_between.png ├── exercise_2.2-vmin_vmax_imshow_and_colorbars.png ├── exercise_4-1.png ├── exercise_4-2.png ├── figure_axes_axis_labeled.png ├── fill_example.png ├── imshow_example.png ├── pcolor_example.png ├── plot_example.png ├── scatter_example.png ├── statistical_example.png └── vector_example.png ├── plot_demo.svg └── solutions ├── 1.1-subplots_and_basic_plotting.py ├── 2.1-bar_and_fill_between.py ├── 2.2-vmin_vmax_imshow_and_colorbars.py ├── 3.1-colors.py ├── 3.2-markers.py ├── 3.3-properties.py ├── 3.4-arrows.py ├── 4.1-legends_and_scaling.py ├── 4.2-spines_ticks_and_subplot_spacing.py └── 5.1-goldstar.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part0-Intro2NumPy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part0-Intro2NumPy.ipynb -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part1-Figures_Subplots_and_layouts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part1-Figures_Subplots_and_layouts.ipynb -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part2-Plotting_Methods_Overview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part2-Plotting_Methods_Overview.ipynb -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part3-HowToSpeakMPL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part3-HowToSpeakMPL.ipynb -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part4-Limits_Legends_and_Layouts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part4-Limits_Legends_and_Layouts.ipynb -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part5-Artists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part5-Artists.ipynb -------------------------------------------------------------------------------- /AnatomyOfMatplotlib-Part6-mpl_toolkits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/AnatomyOfMatplotlib-Part6-mpl_toolkits.ipynb -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/README.md -------------------------------------------------------------------------------- /Test Install.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/Test Install.ipynb -------------------------------------------------------------------------------- /assets/bivariate_normal.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/assets/bivariate_normal.npy -------------------------------------------------------------------------------- /examples/bar_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/bar_example.py -------------------------------------------------------------------------------- /examples/contour_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/contour_example.py -------------------------------------------------------------------------------- /examples/example_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/example_utils.py -------------------------------------------------------------------------------- /examples/fill_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/fill_example.py -------------------------------------------------------------------------------- /examples/imshow_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/imshow_example.py -------------------------------------------------------------------------------- /examples/pcolor_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/pcolor_example.py -------------------------------------------------------------------------------- /examples/plot_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/plot_example.py -------------------------------------------------------------------------------- /examples/scatter_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/scatter_example.py -------------------------------------------------------------------------------- /examples/statistical_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/statistical_example.py -------------------------------------------------------------------------------- /examples/vector_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/examples/vector_example.py -------------------------------------------------------------------------------- /exercises/1.1-subplots_and_basic_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/1.1-subplots_and_basic_plotting.py -------------------------------------------------------------------------------- /exercises/2.1-bar_and_fill_between.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/2.1-bar_and_fill_between.py -------------------------------------------------------------------------------- /exercises/2.2-vmin_vmax_imshow_and_colorbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/2.2-vmin_vmax_imshow_and_colorbars.py -------------------------------------------------------------------------------- /exercises/3.1-colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/3.1-colors.py -------------------------------------------------------------------------------- /exercises/3.2-markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/3.2-markers.py -------------------------------------------------------------------------------- /exercises/3.3-properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/3.3-properties.py -------------------------------------------------------------------------------- /exercises/3.4-arrows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/3.4-arrows.py -------------------------------------------------------------------------------- /exercises/4.1-legends_and_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/4.1-legends_and_scaling.py -------------------------------------------------------------------------------- /exercises/4.2-spines_ticks_and_subplot_spacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/4.2-spines_ticks_and_subplot_spacing.py -------------------------------------------------------------------------------- /exercises/5.1-goldstar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/exercises/5.1-goldstar.py -------------------------------------------------------------------------------- /images/bar_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/bar_example.png -------------------------------------------------------------------------------- /images/contour_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/contour_example.png -------------------------------------------------------------------------------- /images/exercise_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/exercise_1-1.png -------------------------------------------------------------------------------- /images/exercise_2.1-bar_and_fill_between.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/exercise_2.1-bar_and_fill_between.png -------------------------------------------------------------------------------- /images/exercise_2.2-vmin_vmax_imshow_and_colorbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/exercise_2.2-vmin_vmax_imshow_and_colorbars.png -------------------------------------------------------------------------------- /images/exercise_4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/exercise_4-1.png -------------------------------------------------------------------------------- /images/exercise_4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/exercise_4-2.png -------------------------------------------------------------------------------- /images/figure_axes_axis_labeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/figure_axes_axis_labeled.png -------------------------------------------------------------------------------- /images/fill_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/fill_example.png -------------------------------------------------------------------------------- /images/imshow_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/imshow_example.png -------------------------------------------------------------------------------- /images/pcolor_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/pcolor_example.png -------------------------------------------------------------------------------- /images/plot_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/plot_example.png -------------------------------------------------------------------------------- /images/scatter_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/scatter_example.png -------------------------------------------------------------------------------- /images/statistical_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/statistical_example.png -------------------------------------------------------------------------------- /images/vector_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/images/vector_example.png -------------------------------------------------------------------------------- /plot_demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/plot_demo.svg -------------------------------------------------------------------------------- /solutions/1.1-subplots_and_basic_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/1.1-subplots_and_basic_plotting.py -------------------------------------------------------------------------------- /solutions/2.1-bar_and_fill_between.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/2.1-bar_and_fill_between.py -------------------------------------------------------------------------------- /solutions/2.2-vmin_vmax_imshow_and_colorbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/2.2-vmin_vmax_imshow_and_colorbars.py -------------------------------------------------------------------------------- /solutions/3.1-colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/3.1-colors.py -------------------------------------------------------------------------------- /solutions/3.2-markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/3.2-markers.py -------------------------------------------------------------------------------- /solutions/3.3-properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/3.3-properties.py -------------------------------------------------------------------------------- /solutions/3.4-arrows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/3.4-arrows.py -------------------------------------------------------------------------------- /solutions/4.1-legends_and_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/4.1-legends_and_scaling.py -------------------------------------------------------------------------------- /solutions/4.2-spines_ticks_and_subplot_spacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/4.2-spines_ticks_and_subplot_spacing.py -------------------------------------------------------------------------------- /solutions/5.1-goldstar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/AnatomyOfMatplotlib/HEAD/solutions/5.1-goldstar.py --------------------------------------------------------------------------------