This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Import essential packages | |
| # Pandas a python library used for data manupilation and analysis | |
| import pandas as pd | |
| # Numpy a python library used for mathematical operations on arrays | |
| import numpy as np | |
| # Matplotlib is a library used for plts and visualizations | |
| import matplotlib.pyplot as plt | |
| #Seaborn Library is based on matplotlib and used for visualizations | |
| import seaborn as sns | |
| # adding nice backgrounds to graphs |