Correlation between IMBD and Rotten Tomatoes ratings

Question

This dataset provides TV shows, their ratings from IMDb/Rotten Tomatoes, and the streaming platforms that they are hosted on. Given this, determine the correlation between IMDb ratings and Rotten Tomatoes ratings. After finding the correlation, divide the dataset into newer shows (created in 2010 or later) and older shows (created prior to 2010) and rerun the analysis.

# Import packages
import pandas as pd
import numpy as np
# Import data
df = pd.read_csv("https://raw.githubusercontent.com/erood/interviewqs.com_code_snippets/master/Datasets/tv_shows.csv")

Solution

Access restricted

Subscribe to premium account to see the solution.

Get premium now