Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. Matplotlib makes easy things easy and hard things possible. It is one of the libraries you will make use of the most while working with data to perform complete exploratory data analysis. It was created by John D. Hunter
If you have installed anaconda, you do not need to use any of the commands below.
To download matplotlib using Conda install, use the following command in your conda terminal
conda install matplotlib
To download matplotlib using pip install, use the following command in your terminal:
pip install -U matplotlib
In the link below, you will see how your knowledge of NumPy will come in handy as you will be creating arrays and making plots with them. Feels good to be becoming a pro right 😉
https://www.youtube.com/watch?v=qqwf4Vuj8oM&list=PLeo1K3hjS3uu4Lr8_kro2AqaO6CFYgKOl&index=1
In the next challenge, you will learn how to make your plots look better with labels, titles, and more.
The video above is number 1 of a 7-part video that you will be using to learn matplotlib.