Matplotlib is the visualization library in the python library for 2D plots.

Matplotlib is a data visualization library built on NumPy arrays.

Matplotlib consists of several plots like line, scatter, bar, histogram, etc.

Matplotlib can be installed by simply typing the below command

pip install matplotlib

Matplotlib library can be imported by typing

import matplotlib.pyplot as plt 

Most of the matplotlib utilities lie under the pyplot submodule.

Matplotlib can be used in jupyter Notebook to create interactive visualization.