Baselight

Global Video Game Sales & Ratings

Examining the Impact of Storytelling on Success

@kaggle.thedevastator_global_video_game_sales_ratings

Loading...
Loading...

About this Dataset

Global Video Game Sales & Ratings


Global Video Game Sales & Ratings

Examining the Impact of Storytelling on Success

By [source]


About this dataset

This dataset consists of records from Metacritic providing insight into global video game ratings and sales. Traditionally categorised by genre, publisher, platform and rating, this data also includes additional descriptive attributes such as 'story focus', 'gameplay focus', and whether it is a 'series game'. These unique descriptors give valuable perspective on the video game industry, presenting an invaluable resource to evaluate the effect of focusing on storytelling upon video game sales and ratings.

The wide-reaching implications of this data are immense - from understanding complex customer ‘gamer’ engagement processes across different markets & genres to exploring how narrative elements have become increasingly commonplace in popular titles. In addition to traditional research topics ranging from rating vs success relationships or the importance of series games in retention - all these aspects combined present endless possibilities for deeper studies into an ever-evolving field!

Ultimately, this dataset gives researchers the power to profoundly analyse trends within the gaming market with informative and expansive details regarding popularity - helping developers craft engaging experiences for all customers worldwide. Henceforth we invite you on a journey into uncovering surprising revelations that may form part of wider conversations & culture surrounding gaming!

More Datasets

For more datasets, click here.

Featured Notebooks

  • 🚨 Your notebook can be here! 🚨!

How to use the dataset

This dataset contains data on global video game sales and ratings, including information such as genre, publisher, platform, rating, story focus and gameplay focus for each game. It is a great resource for understanding how storytelling affects the success of video games, as well as looking into other trends across different markets and genres. In this guide we'll provide some tips on how to make use of the data provided in this dataset most effectively.

  • Familiarise yourself with the columns included: there are a range of columns that will be useful when exploring the dataset such as ‘Genre’, ‘Publisher’ ‘Platform’ etc., so get familiar with what they mean before using them to dive deeper into your research questions.

  • Use descriptive attributes: There are a number of additional attributes added to each entry such as 'story focus' and 'gameplay focus', so you can delve deeper into these categories for further insight - particularly when comparing them to sales/ratings numbers for enhanced understanding of correlations between elements like story-telling and customer engagement or game success overall.

  • Evaluate wider trends: Look at larger trends such as changes in series games over time or genre differences between regions from other perspectives by taking into account more than just sale/rating numbers – e.g adding specific customer reviews or developer feedback can give unique insights beyond just traditional metrics alone!

4 Utilise comparison tools: There are many powerful comparison tools available like heatmaps that allow you to quickly identify interesting relationships between different variables in your dataset – try experimenting with these!

5 Expand your scope: Get creative by without relying too heavily on sales figures; think about spinoff products or other ancillary goods related to each title – could they offer valuable insights? Does their success correlate with video game performance? Do brand partnerships help extend customer engagement ?

These are just a few tips but hopefully they provide food-for-thought while thinking about research questions that this dataset might help answer!

Research Ideas

  • Studying the effectiveness of awards and accolades in promoting video game sales, specifically analyzing differences between story-focused games and gameplay-focused games.
  • Examining the effect of platform variety on a single game's success, using this dataset to track metrics across multiple platforms and series titles.
  • Exploring whether user preferences or review scores are better predictors of sales success by studying different ratings across different types of stories (i.e., comedy vs tragedy) or gameplay focus (strategy vs action)

Acknowledgements

If you use this dataset in your research, please credit the original authors.
Data Source

License

License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.

Columns

File: Raw Data.csv

Column name Description
Name The name of the video game. (String)
Platform The platform the game was released on. (String)
Year_of_Release The year the game was released. (Integer)
Genre The genre of the game. (String)
Publisher The publisher of the game. (String)
NA_Sales The sales of the game in North America. (Float)
EU_Sales The sales of the game in Europe. (Float)
JP_Sales The sales of the game in Japan. (Float)
Other_Sales The sales of the game in other regions. (Float)
Global_Sales The total sales of the game across all regions. (Float)
Critic_Score The score given to the game by critics. (Float)
Critic_Count The number of critics who reviewed the game. (Integer)
User_Score The score given to the game by users. (Float)
User_Count The number of users who reviewed the game. (Integer)
Developer The developer of the game. (String)
Rating The rating of the game. (String)

File: Tagged-Data-Final.csv

Column name Description
Name The name of the video game. (String)
Year_of_Release The year the game was released. (Integer)
Genre The genre of the game. (String)
Publisher The publisher of the game. (String)
NA_Sales The sales of the game in North America. (Float)
EU_Sales The sales of the game in Europe. (Float)
JP_Sales The sales of the game in Japan. (Float)
Other_Sales The sales of the game in other regions. (Float)
Global_Sales The total sales of the game across all regions. (Float)
Critic_Score The score given to the game by critics. (Float)
Critic_Count The number of critics who reviewed the game. (Integer)
User_Score The score given to the game by users. (Float)
User_Count The number of users who reviewed the game. (Integer)
Developer The developer of the game. (String)
Rating The rating of the game. (String)
Story Focus The focus of the game's story. (String)
Gameplay Focus The focus of the game's gameplay. (String)
Series Whether the game is part of a series or not. (Boolean)

Acknowledgements

If you use this dataset in your research, please credit the original authors.
If you use this dataset in your research, please credit .

Tables

Cleaned Data 2

@kaggle.thedevastator_global_video_game_sales_ratings.cleaned_data_2
  • 194.55 KB
  • 6894 rows
  • 15 columns
Loading...

CREATE TABLE cleaned_data_2 (
  "name" VARCHAR,
  "year_of_release" BIGINT,
  "genre" VARCHAR,
  "publisher" VARCHAR,
  "na_sales" DOUBLE,
  "eu_sales" DOUBLE,
  "jp_sales" DOUBLE,
  "other_sales" DOUBLE,
  "global_sales" DOUBLE,
  "critic_score" BIGINT,
  "critic_count" BIGINT,
  "user_score" DOUBLE,
  "user_count" BIGINT,
  "developer" VARCHAR,
  "rating" VARCHAR
);

Raw Data

@kaggle.thedevastator_global_video_game_sales_ratings.raw_data
  • 478.15 KB
  • 16719 rows
  • 16 columns
Loading...

CREATE TABLE raw_data (
  "name" VARCHAR,
  "platform" VARCHAR,
  "year_of_release" DOUBLE,
  "genre" VARCHAR,
  "publisher" VARCHAR,
  "na_sales" DOUBLE,
  "eu_sales" DOUBLE,
  "jp_sales" DOUBLE,
  "other_sales" DOUBLE,
  "global_sales" DOUBLE,
  "critic_score" DOUBLE,
  "critic_count" DOUBLE,
  "user_score" VARCHAR,
  "user_count" DOUBLE,
  "developer" VARCHAR,
  "rating" VARCHAR
);

Tagged Data Final

@kaggle.thedevastator_global_video_game_sales_ratings.tagged_data_final
  • 197.54 KB
  • 6894 rows
  • 18 columns
Loading...

CREATE TABLE tagged_data_final (
  "name" VARCHAR,
  "year_of_release" DOUBLE,
  "genre" VARCHAR,
  "publisher" VARCHAR,
  "na_sales" DOUBLE,
  "eu_sales" DOUBLE,
  "jp_sales" DOUBLE,
  "other_sales" DOUBLE,
  "global_sales" DOUBLE,
  "critic_score" DOUBLE,
  "critic_count" DOUBLE,
  "user_score" DOUBLE,
  "user_count" DOUBLE,
  "developer" VARCHAR,
  "rating" VARCHAR,
  "story_focus" VARCHAR,
  "gameplay_focus" VARCHAR,
  "series" VARCHAR
);

Share link

Anyone who has the link will be able to view this.