Project2 Eda Video Game D05f8
Video Games: an Exploratory Data Analysis
Image Credits: karnoff / Shutterstock
According to the description, the database has information such as video game titles, platform on which they run, the number of sales in different markets, among others.
Although there was no source or explanation on how the user obtained or constructed the database, we will produce an exploratory analysis assuming that the data is trustable. The Exploratory Data Analysis (EDA) is the process of exploring, investigating, and gathering insights from data using statistical measures and visualizations.
1- Installing the necessary libraries and defining the graphs' style
# Installing the necessary libraries
!pip install jovian --upgrade --quiet
import jovian
!pip install opendatasets --upgrade --quiet
import opendatasets as od
import pandas as pd
import numpy as np
!pip install plotly --upgrade --quiet
import plotly.express as px
import requests
import seaborn as sns
import matplotlib
import matplotlib.pyplot as plt
import warnings
warnings.filterwarnings("ignore")
%matplotlib inline
sns.set_style('darkgrid')
matplotlib.rcParams['font.size'] = 10
matplotlib.rcParams['figure.figsize'] = (15, 8)
matplotlib.rcParams['figure.facecolor'] = '#00000000'
2- Downloading the data
Mateus Silva Chang6 months ago