Learn practical skills, build real-world projects, and advance your career
#remove
import jovian
jovian.commit()
[jovian] Attempting to save notebook.. [jovian] Updating notebook "ratan/imdbmovieassignment" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/ratan/imdbmovieassignment
# Filtering out the warnings

import warnings

warnings.filterwarnings('ignore')
# Importing the required libraries

import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt

IMDb Movie Assignment

You have the data for the 100 top-rated movies from the past decade along with various pieces of information about the movie, its actors, and the voters who have rated these movies online. In this assignment, you will try to find some interesting insights into these movies and their voters, using Python.

Task 1: Reading the data