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

Project Title - Video Games Sales Across Various Regions Across World

Everyone played Video Game once in their lifetime, and there are various video games played across different regions in the world. But their sales performance varies from region to region. Some perform better in North America region and some perform better in Europe region. One other criteria we will analyze will be the sales performance of different genres in North America, Europe and Japan region.
The dataset used to analyze above mentioned facts in this project is from Kaggle.com and will be using the different python libraries and tools taught in the course Data Analysis with Python: Zero to Pandas.

!pip install jovian opendatasets --upgrade --quiet
!pip install kaggle
Requirement already satisfied: kaggle in /opt/conda/lib/python3.7/site-packages (1.5.8) Requirement already satisfied: six>=1.10 in /opt/conda/lib/python3.7/site-packages (from kaggle) (1.14.0) Requirement already satisfied: requests in /opt/conda/lib/python3.7/site-packages (from kaggle) (2.23.0) Requirement already satisfied: certifi in /opt/conda/lib/python3.7/site-packages (from kaggle) (2020.6.20) Requirement already satisfied: python-slugify in /opt/conda/lib/python3.7/site-packages (from kaggle) (4.0.1) Requirement already satisfied: slugify in /opt/conda/lib/python3.7/site-packages (from kaggle) (0.0.1) Requirement already satisfied: urllib3<1.25,>=1.21.1 in /opt/conda/lib/python3.7/site-packages (from kaggle) (1.24.3) Requirement already satisfied: tqdm in /opt/conda/lib/python3.7/site-packages (from kaggle) (4.45.0) Requirement already satisfied: python-dateutil in /opt/conda/lib/python3.7/site-packages (from kaggle) (2.8.1) Requirement already satisfied: chardet<4,>=3.0.2 in /opt/conda/lib/python3.7/site-packages (from requests->kaggle) (3.0.4) Requirement already satisfied: idna<3,>=2.5 in /opt/conda/lib/python3.7/site-packages (from requests->kaggle) (2.9) Requirement already satisfied: text-unidecode>=1.3 in /opt/conda/lib/python3.7/site-packages (from python-slugify->kaggle) (1.3)

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

dataset_url = 'https://www.kaggle.com/gregorut/videogamesales'