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

Netflix Project

The Data

We will be using 3 sets of data from kaggle, that data is:

Data Preparation

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
netflix_df = pd.read_csv("Netflix Movies and TV Show/netflix_titles.csv")
netflix_df.head()