Learn practical skills, build real-world projects, and advance your career
# Filtering out the warnings

import warnings

warnings.filterwarnings('ignore')
# Importing the required libraries

import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import jovian
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)

Credit EDA Case Study