Question: Use Python scripting to answer the following analysis question: Is there a relationship between the duration of movies (in minutes) and their ratings? Objective :
Use Python scripting to answer the following analysis question:
Is there a relationship between the duration of movies (in minutes) and their ratings?
- Objective: Investigate whether movie length correlates with the type of rating it receives, which might suggest content pacing expectations.
- Analysis: Create scatter plots with duration on one axis and rating on another, examining potential patterns or clusters.
import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns df= pd.read_csv("netflix_titles.csv") df.head()Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
