me@michellealzoladesign.com

Mon - Fri: 8AM - 5PM MDT

Matplotlib is a Python library that is used to create visualizations such as line charts, bar graphs, scatter plots, histograms, and a lot more. If you are using PyCharm, to get started with Matplotlib, go to the Terminal or click ALT+F12 on the keyboard. Install Matplotlib using pip as shown:

pip install matplotlib

To create 3D plots, use mpl_toolkits and import the Axes3D class as shown:

from mpl_toolkits.mplot3d import Axes3D

Below are some of the exercises that I did with MatplotLib and Mpl_toolkits.

You may see my code on my GitHub repo here.

Recommended Articles