Learn practical skills, build real-world projects, and advance your career
import jovian
#Importing the libraries.
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
#Supress Warnings
import warnings
warnings.filterwarnings('ignore')
#To view all columns of the dataframe
pd.set_option('display.max_columns',500)
#Importing the dataset
lead = pd.read_csv('Leads.csv')