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

alt

Netflix Movies & TV shows Analysis

As we all know NETFLIX is a subscription-based streaming service offering online streaming from a library of films and television series, including those produced in-house is a subscription-based streaming service offering online streaming from a library of films and television series, including those produced in-house

Let's do Exploratory Data Analysis on NETFLIX trends.

Importing Useful Libraries

To begin, first we will import some of the basic but strong python libraries.

import pandas as pd
import os
import matplotlib.pyplot as plt

Loading Datasets

DataSource : Kaggle

Now we are ready to load dataset from DataSource. We will check for the datafile in the directory and use read_csv() to have glimpse of data.

for dirname, _, filenames in os.walk('/kaggle/input'):
    for filename in filenames:
        print(os.path.join(dirname, filename))
filename = os.path.join(dirname, filename)
df = pd.read_csv(filename)
df
/kaggle/input/netflix-shows/netflix_titles.csv