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

NETFLIX Movies and TV shows Analysis

Netflix, Inc. operates as a streaming entertainment service company. The firm provides subscription service streaming movies and television episodes over the Internet and sending DVDs by mail. It operates through the following segments: Domestic Streaming, International Streaming and Domestic DVD.

This dataset consists of tv shows and movies available on Netflix as of 2019. The dataset is collected from Flixable which is a third-party Netflix search engine.The data set has been downloaded from Kaggle Dataset. The data set contains one csv file (i.e. netflix_titles.csv).The libraries for data analysis and visulaization used in this project are Numpy, Pandas, Matplotlib and Seaborn. These libraries are covered by Jovian.ml named as [Data Analysis with Python: Zero to Pandas]

Downloading the Dataset

We downloaded the dataset from https://www.kaggle.com/datasets?fileType=csv . We have choosen a data set on Netflix Movies and TV shows. while uploading the data set it required your username and key from the kaggle account. There is one file i.e. netflix_titles.csv in this data on which we will do the analysis. We have used the opendatasets Python library to download the dataset on Jovian Notebook.

!pip install jovian opendatasets --upgrade --quiet

Let's begin by downloading the data, and listing the files within the dataset.

# the url for the dataset
dataset_url = 'https://www.kaggle.com/shivamb/netflix-shows'