IMDB MOVIE DATA ANALYSIS

The dataset I'll be working on is downloaded from Kaggle.com, here is the link:https://www.kaggle.com/datasets/utsh0dey/25k-movie-dataset. The dataset is in 'csv' format. This dataset contains 12 column and almost 25k rows.I will do data cleaning first. All the unnecessary columns and rows will be removed. I'll be mainly using python pandas library for most of the operations like deleting, merging, sorting. For plotting the data I'll be using matplotlib and seaborn libraries. All the necessary tools and techniques I'll be using to gain insight from the dataset, I've learned from the course 'Data Analysis with Python: Zero to Pandas' on 'Jovian.com', here is the link:https://jovian.com/learn/data-analysis-with-python-zero-to-pandas.

Downloading the Dataset

The dataset we'll be working is available on 'Kaggle.com'. Here is the link for the dataset:https://www.kaggle.com/datasets/utsh0dey/25k-movie-dataset

!pip install jovian opendatasets --upgrade --quiet

Let's begin by downloading the data, and listing the files within the dataset.

dataset_url = 'https://www.kaggle.com/datasets/utsh0dey/25k-movie-dataset'