Explore the Netflix-shows dataset through visualizations and graphs using matplotlib and seaborn. Learn how to handle null values in the data and split it into separate datasets for movies and TV shows. Follow along with the Python code for data preparation and cleaning.
Netflix is a popular service that people across the world use for entertainment. In this EDA, I will explore the netflix-shows dataset through visualizations and graphs using matplotlib and seaborn.
First, we will install and import necessary packages.
!pip install jovian --upgrade --quiet
import jovian
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
import matplotlib
# jovian.commit(files=['../input/netflix-shows/netflix_titles.csv'], project='netflix-movies-and-tv-shows-project')