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

⇨ Part One: Data Pre-Processing and Feature Engineering

%%capture
!pip install numpy
%%capture
!pip install pandas
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
import os
from zipfile import ZipFile
from urllib.request import urlretrieve
files_zipped = 'https://www.evanmarie.com/content/files/puppy_original_csvs.zip'
urlretrieve(files_zipped, 'original_csvs.zip')
with ZipFile('original_csvs.zip') as zipped_file:
    zipped_file.extractall(path='original_csvs')