import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
# pull data from github
bank_data = pd.read_csv("<https://mycontent.com/>"\\
"PacktWorkshops/"\\
"thd/"\\
"bank-additional.csv", sep=";")
# visualize the head of the dataset
bank_data.head().T