Learn practical skills, build real-world projects, and advance your career

1. Loading Dependencies and Datasets

# Importing all necessary libraries
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings("ignore")
pd.set_option("display.max_columns", 300)
pd.set_option("display.max_rows", 300)
# Reading the data 
churn_data = pd.read_csv("train.csv")
# Looking at initial 10 rows of the data

churn_data.head(10)