bank-additional.csv is already in our repo, so there is no need to download the data from the UCI website
In [2]:
import pandas as pd
url = 'data/bank-additional.csv'
bank = pd.read_csv(url, sep=';')
bank.head()
Out[2]:
In [2]:
# list all columns (for reference)
bank.columns
Out[2]: