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

NETFLIX Movies and TV Shows analysis

In this project i am using NETFLIX dataset which contains almost all the shows that have been added in the list and all the details about the shows like director,cast,year,duration.rating and so on..
Here we will analyse various aspects of this dataset.

Here we have downloaded the csv file for our dataset and we have uploaded netflix_titles.csv file on binder via Jupyter's GUI.

import pandas as pd 
netflix_df=pd.read_csv("netflix_titles.csv")
type(netflix_df)
pandas.core.frame.DataFrame