Jovian
Sign In

Video Games Analysis

Video-games Data analysis

alt

In this project is divided into multiple section, starting from downloading the data then cleaning it all the way to the conclusion, so let's talk a bit about the df we will be working with; this df consists of video-games info like sales in multiple region names of the publishers and platform etc, this df was downloaded from https://www.kaggle.com/, so we are going to break down this df using all the things I learned from the (zero to pandas course(https://jovian.com/learn/data-analysis-with-python-zero-to-pandas) and more) so we can reach some nice insights and knowledge we were not aware of before we start this project, so let's get started.

Downloading the Dataset

In this first section we are gonna download a df from kaggle website, using opendatasets library from python as well as os.

!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/ulrikthygepedersen/video-games-sales' 
t2bsoul91
Tariq M Al-Bsoul6 months ago