article thumbnail

Netflix Data Analysis using Python

Mlearning.ai

In this blog, we’ll be using Python to perform exploratory data analysis (EDA) on a Netflix dataset that we’ve found on Kaggle. Further Analysis From the first plot, we can see the frequency of content added by Netflix from 2008 to 2021. plt.figure(figsize=(12,6)) df[df["type"]=="TV Show"]["release_year"].value_counts()[:20].plot(kind="bar",color="Blue")