Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nafisalawalidris/investigating-netflix-movies-and-guest-stars-in-the-office
Dive into the world of Netflix and explore the average duration of movies. Netflix, being the largest entertainment company, offers a wide range of movies for its viewers. In this project, we analyse movie durations using pandas and create a DataFrame from a dictionary. By examining average durations from 2011 to 2020.
https://github.com/nafisalawalidris/investigating-netflix-movies-and-guest-stars-in-the-office
average-duration csv-files data-analysis data-visualization dataframe filtering movie-durations movie-length-distribution netflix pandas python trends
Last synced: about 1 month ago
JSON representation
Dive into the world of Netflix and explore the average duration of movies. Netflix, being the largest entertainment company, offers a wide range of movies for its viewers. In this project, we analyse movie durations using pandas and create a DataFrame from a dictionary. By examining average durations from 2011 to 2020.
- Host: GitHub
- URL: https://github.com/nafisalawalidris/investigating-netflix-movies-and-guest-stars-in-the-office
- Owner: nafisalawalidris
- Created: 2023-06-04T11:59:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-07T18:41:15.000Z (over 1 year ago)
- Last Synced: 2024-01-26T08:45:52.244Z (12 months ago)
- Topics: average-duration, csv-files, data-analysis, data-visualization, dataframe, filtering, movie-durations, movie-length-distribution, netflix, pandas, python, trends
- Language: HTML
- Homepage:
- Size: 1.88 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Loading your friend's data into a dictionary
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!