Module 5#

Matplotlib#

One of the most important things in data science in visualization of your data. It helps us intuitively understand and visually inspect the data. Often it gives us idea of what to do with the data that we have.
Matplotlib is the go to library in Python for data visualization. It can create different types of visualizations of our data like line plots, scatter plots, histograms, bar charts, pie charts, box plots, etc. It also supports 3-dimensional plotting.

Before we get started with this module, in case you have not installed Matplotlib, you can do so by running pip install matplotlib on your terminal.

References:

  1. https://www.analyticsvidhya.com/blog/2021/10/introduction-to-matplotlib-using-python-for-beginners/