The graphical representation of the data set to identify patters and trends out of it is called DATA VISUALISATION.
Matplotlib is used for data visualisation in Python. Now we will know what Matplotlib is and what different kind of graph are there to represent data.
Matplotlib was created by John D.Hunter in 2003. It is a free and open source data visualisation liberty in python.
It comes with a verity of plots but the most used module of Matplotlib is Pyplot which is used for creating 2D plots of arrays.
• To install it using pip:
python -m pip install -U pip
python -m pip install -U matplotlib
• To install using Anaconda:
conda install natplotlib
Or
conda install -c conda-forge matplotlib
import matplotlib.pyplot as plt