Learn practical skills, build real-world projects, and advance your career

Video Games Sales Analysis

In this project I will use the video games sales data for analysis. I will try to gain useful insights from this dataset and improve my skills while doing so. This analysis is part of the Zero to Pandas course offered by Jovian ML and FreecodeCamp.

Downloading the Dataset

The dataset can be obtained from this kaggle link: https://www.kaggle.com/gregorut/videogamesales/notebooks
This dataset contains a list of video games with sales greater than 100,000 copies. It has sales record for North America, Europe, Japan and rest of the world in millions. Though we can conclude that some countries must have been excluded but it is not clear.

!pip install jovian opendatasets --upgrade --quiet

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

# Change this
dataset_url = 'https://www.kaggle.com/gregorut/videogamesales/notebooks'