Learn practical skills, build real-world projects, and advance your career
!pip install jovian -q

IMPORT LIBRARIES

import jovian
# Supress Warnings

import warnings
warnings.filterwarnings('ignore')
# Import the packages
import pandas as pd 
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
pd.set_option('display.max_columns', 500)
pd.set_option('display.max_rows', 500)