Learn practical skills, build real-world projects, and advance your career
# Supressing the warnings
import warnings
warnings.filterwarnings('ignore')
# Importing Libraries
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.style as style
import seaborn as sns
import itertools
%matplotlib inline

# Styling the plot
style.use('ggplot')
# Adjusting Output Views
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
pd.set_option('display.expand_frame_repr', False)
# Importing the Dataset
app = pd.read_csv('application_data.csv')
prev = pd.read_csv('previous_application.csv')

1. Understanding the dataset