/investigating-netflix-movie-durations

Investing Netflix data using python

Primary LanguageJupyter Notebook

Investigating-Netflix-Movies-and-Guest-Stars-in-the-Office

Netflix! What started in 1997 as a DVD rental service has since exploded into the largest entertainment/media company by market capitalization, boasting over 200 million subscribers as of January 2021.

Given the large number of movies and series available on the platform, it is a perfect opportunity to flex our data manipulation skills and dive into the entertainment industry. Our friend has also been brushing up on their Python skills and has taken a first crack at a CSV file containing Netflix data. For their first order of business, they have been performing some analyses, and they believe that the average duration of movies has been declining.

As evidence of this, they have provided us with the following information. For the years from 2011 to 2020, the average movie durations are 103, 101, 99, 100, 100, 95, 95, 96, 93, and 90, respectively.

If we're going to be working with this data, we know a good place to start would be to probably start working with pandas. But first we'll need to create a DataFrame from scratch. Let's start by creating a Python object covered in Intermediate Python: a dictionary!

Tools

  • Pandas
  • Matplotlib

Description

  • Use list to create dictionary object
  • Create Pandas DataFrame object from the python dictionary
  • Subset columns
  • Create visualizations using liner and scatter plots