The Effects of Genre & Platform on Video Game Sales

finalpart3
DACSS 603 Final Project Submission
Author

Alexis Gamez

Published

May 25, 2023

Code
library(plyr)
library(tidyverse)
library(readr)
library(summarytools)
library(psych)
library(lattice)
library(FSA)
library(kableExtra)
library(ggplot2)
library(stargazer)
library(MPV)

# reading in the data set
Video_Game_Sales <- read_csv("_data/final_project/Video_Game_Sales_as_of_Jan_2017.csv")

knitr::opts_chunk$set(echo = T)

Introduction

The current state of video games supports massive online and local communities, generating millions in revenue a year. No longer can the perception of video games continue to be that of a counter-culture media, but something more widely accepted, definitively present, and enjoyed among diverse communities.

Stated eloquently by Nielsen, Smith & Tosca in, Understanding Video Games: The Essential Introduction (2012), No cultural form exists in isolation; rather, it is integrated within a complex system of meanings shaped by society and its institutions. Compared to other cultural forms, such as literature, the medium of the video game is a new member of this fascinating ecology. It is certainly true that the history of cultural media shows an almost instinctive skepticism leveled at new media. It has been true of radio, it has been true of movies, and it has certainly been true of television, which has long fought against the perception that its role was to entertain, rather than to enlighten.

Now, over 10 years later, we can see that the skepticism once surrounding video games has waned, so much so that engaging with them has now been accepted as a common hobby and even profession. I believe that video games are here to stay and rather than reject the new norm, we should grow with it. Video games will only continue to evolve in their application, especially when taking into consideration recent developments in virtual reality technology. Understanding and utilizing video games as the unique source of cultural media that they are can provide us insight into the nature of popular media and the very real weight of their market. What makes a game good? Does a game have to be good to be “successful”? Does fighting among platform communities contribute to the success, or lack there of, of a video game? Do critic ratings play a role? How about user ratings? Or maybe, does it come down to the publisher and whether they would have a large enough budget to advertise their games to the masses? These are all questions I’d like to address during the scope of my project. However, the main objective I’ve tasked myself with is to address the following research question:

What impacts do Platform & Genre have on the commercial success of a video game?

Hypothesis

While there exists a diverse range of articles and blog posts related to console wars, game of the year announcements, loot box market structures, etc. there has been a noticeable oversight regarding the correlation between public critique and generated revenue. An often overlooked predicament of video game development occurs post-release. A game may be applauded for all the characteristics the gaming community has grown to love, but if that game’s sales aren’t comparable to the costs it generated, then what reward is there for the developers? Would that game still be considered successful? Would it be lucrative for developers to switch to a more widely accepted genre or platform to guarantee economic success?

These questions have led to the development of the following hypotheses:

H1: Platform and Genre significantly impact Global Sales.

H2: Nintendo and Sony consoles host the most financially successful video games.

H3: The Shooter genre is the most financially successful genre when compared to all others.

From personal knowledge, it’s known that popularity by platform may fluctuate over the course of a series’ lifespan. The Nintendo manufactured Gamecube and Wii were widely popular upon release and are still commonly used today. The same can be said for Sony’s Playstation 1 & 2 or Microsoft’s Xbox 360. Similarly, there are also platforms like the Wii U, Playstation 3 and Xbox One that had tumultuous receptions upon release and led to committed users switching to other platform series. A common example would be the transition from Playstation to Xbox and vice versa. With this in mind, I hypothesize that Nintendo and Sony based platforms have the highest impact on sales for video games based on prior knowledge concerning the success of select platforms like the Playstation 2, Gamecube and Wii.

When it comes to genre, the unrelenting success of the Call of Duty series within the time frame of this data serves as the core component of my belief that the genre Shooters will have the largest impact on sales among the list video game genres. More and more shooters continue to be made in attempts to emulate the success achieved with games like Call of Duty: Modern Warfare 2 and Black Ops. I also want to acknowledge other major successes such as Grand Theft Auto for example, that are major staples within their own given genres too (in the case of GTA, it’s the Role Playing genre). However, it’s known from personal experience that first person shooters revolutionized the gaming industry after the release of Call of Duty 4: Modern Warfare. I hypothesize that while the modern gaming market may be over-saturated with Shooters, they continue to play a large role in the commercial success of video games upon release.

Descriptive Statistics

Description and Summary of the Data

This data set was pulled from the Kaggle online database and its description reads as follows,

This data set contains a list of video games with sales greater than 100,000 copies along with critic and user ratings.

With this updated data set provided by the collector, we are given 15 variables and approximately 17,500 entries. The variables are as follows:

  • Name [game’s name]
  • Platform [platform of game release]
  • Year of Release [game’s release date]
  • Genre [genre of game]
  • Publisher [publisher of game]
  • NA Sales [sales in North America in millions of USD]
  • EU Sales [sales in Europe in millions of USD]
  • JPN Sales [sales in Japan in millions of USD]
  • Other Sales [sales in rest of the world in millions of USD]
  • Global Sales [total worldwide sales in millions of USD]
  • Critic Score [aggregate score compiled by Metacritic staff]
  • Critic Count [the number of critis used in creating the critic score]
  • User Score [score according to Metacritic subscribers]
  • User Count [number of users who gave the user score]
  • Rating [ESRB rating for the game]
Code
Video_Game_Sales_Select <- Video_Game_Sales %>% 
  select(Genre, Platform, Rating, Publisher, Critic_Score, User_Score, Global_Sales)

Video_Game_Sales_Desc <- describe(x=Video_Game_Sales_Select) %>% 
  select(c(vars, n, mean, sd, median, min, max, range))

kable(Video_Game_Sales_Desc) %>% 
  kable_styling("striped")
vars n mean sd median min max range
Genre* 1 17416 5.8861966 3.773310 6.00 1.00 12.00 11.00
Platform* 2 17416 16.7518948 8.303035 17.00 1.00 31.00 30.00
Rating* 3 10252 4.5534530 2.612557 3.00 1.00 8.00 7.00
Publisher* 4 17416 323.3493914 196.181923 355.00 1.00 627.00 626.00
Critic_Score 5 8336 68.9125480 13.964937 71.00 13.00 98.00 85.00
User_Score 6 7798 7.1170557 1.502410 7.50 0.00 9.70 9.70
Global_Sales 7 17416 0.5164693 1.526124 0.16 0.01 82.54 82.53

How was the data collected?

Referencing the data set’s description once again, it states that,

It is a combined web scrape from VGChartz and Metacritic along with manually entered year of release values for most games with a missing year of release.

The original code the collector utilized was created by Rush Kirubi, but it’s made apparent that the original set limited the data to only include a subset of video game platforms. Additionally, not all the listed video games have information on Metacritic, so there are a significant amount of missing values under the critic & user scores/counts variables.

This provides valuable context concerning Metacritic, the forum utilized by critics and users to rate their favorite games, and the numerous missing values within the data frame. Metacritic was established in 1999. As a result, all entries pre-dating early 2000 lack critic and user scores, as it had not been as well established at the time. These values will end up being filtered out to accommodate the controls I would like to use in the models I later create.

Code
# summarizing our data
summary(Video_Game_Sales)
     Name             Platform         Year_of_Release    Genre          
 Length:17416       Length:17416       Min.   :1976    Length:17416      
 Class :character   Class :character   1st Qu.:2003    Class :character  
 Mode  :character   Mode  :character   Median :2008    Mode  :character  
                                       Mean   :2007                      
                                       3rd Qu.:2011                      
                                       Max.   :2017                      
                                       NA's   :8                         
  Publisher            NA_Sales          EU_Sales          JP_Sales       
 Length:17416       Min.   : 0.0000   Min.   : 0.0000   Min.   : 0.00000  
 Class :character   1st Qu.: 0.0000   1st Qu.: 0.0000   1st Qu.: 0.00000  
 Mode  :character   Median : 0.0700   Median : 0.0200   Median : 0.00000  
                    Mean   : 0.2545   Mean   : 0.1407   Mean   : 0.07502  
                    3rd Qu.: 0.2300   3rd Qu.: 0.1000   3rd Qu.: 0.03000  
                    Max.   :41.3600   Max.   :28.9600   Max.   :10.22000  
                                                                          
  Other_Sales        Global_Sales      Critic_Score    Critic_Count   
 Min.   : 0.00000   Min.   : 0.0100   Min.   :13.00   Min.   :  3.00  
 1st Qu.: 0.00000   1st Qu.: 0.0500   1st Qu.:60.00   1st Qu.: 11.00  
 Median : 0.01000   Median : 0.1600   Median :71.00   Median : 21.00  
 Mean   : 0.04591   Mean   : 0.5165   Mean   :68.91   Mean   : 26.19  
 3rd Qu.: 0.03000   3rd Qu.: 0.4500   3rd Qu.:79.00   3rd Qu.: 36.00  
 Max.   :10.57000   Max.   :82.5400   Max.   :98.00   Max.   :113.00  
                                      NA's   :9080    NA's   :9080    
   User_Score      User_Count         Rating         
 Min.   :0.000   Min.   :    4.0   Length:17416      
 1st Qu.:6.400   1st Qu.:   10.0   Class :character  
 Median :7.500   Median :   25.0   Mode  :character  
 Mean   :7.117   Mean   :  162.7                     
 3rd Qu.:8.200   3rd Qu.:   81.0                     
 Max.   :9.700   Max.   :10766.0                     
 NA's   :9618    NA's   :9618                        

Summarizing the data shows that 9,080 entries lack critic scores and 9,618 entries lack user scores. Even with 9,618 entries omitted, there are still over 7,000 complete entries to analyze and I do not fear that the omission will negatively impact the analysis.

Variables of Interest

Of the 15 variables provided, 7 will be heavily utilized throughout the scope of this project. Those 7 have been classified below.

2 main independent variables:

  • Platform
  • Genre

4 confounding variables:

  • Publisher
  • Rating
  • Critic Scores
  • User Scores

1 dependent variable:

  • Global Sales

Modifying and Visualizing the Data

Modifications

My goal in this section is to acknowledge the steps I took to mold and form the data set I’ll be using for this project into something conducive to an analysis. To start, I want to take a glimpse at and summarize my data to get a visual representation of the numbers that I’ll be working with.

Code
head(Video_Game_Sales)
# A tibble: 6 × 15
  Name       Platform Year_of_Release Genre Publisher NA_Sales EU_Sales JP_Sales
  <chr>      <chr>              <dbl> <chr> <chr>        <dbl>    <dbl>    <dbl>
1 Wii Sports Wii                 2006 Spor… Nintendo      41.4    29.0      3.77
2 Super Mar… NES                 1985 Plat… Nintendo      29.1     3.58     6.81
3 Mario Kar… Wii                 2008 Raci… Nintendo      15.7    12.8      3.79
4 Wii Sport… Wii                 2009 Spor… Nintendo      15.6    11.0      3.28
5 Pokemon R… G                   1996 Role… Nintendo      11.3     8.89    10.2 
6 Tetris     G                   1989 Puzz… Nintendo      23.2     2.26     4.22
# … with 7 more variables: Other_Sales <dbl>, Global_Sales <dbl>,
#   Critic_Score <dbl>, Critic_Count <dbl>, User_Score <dbl>, User_Count <dbl>,
#   Rating <chr>
Code
dfSummary(Video_Game_Sales)
Data Frame Summary  
Video_Game_Sales  
Dimensions: 17416 x 15  
Duplicates: 0  

----------------------------------------------------------------------------------------------------------------------
No   Variable          Stats / Values                 Freqs (% of Valid)    Graph                 Valid      Missing  
---- ----------------- ------------------------------ --------------------- --------------------- ---------- ---------
1    Name              1. Need for Speed: Most Want      12 ( 0.1%)                               17416      0        
     [character]       2. FIFA 14                         9 ( 0.1%)                               (100.0%)   (0.0%)   
                       3. LEGO Marvel Super Heroes        9 ( 0.1%)                                                   
                       4. Madden NFL 07                   9 ( 0.1%)                                                   
                       5. Madden NFL 08                   9 ( 0.1%)                                                   
                       6. Ratatouille                     9 ( 0.1%)                                                   
                       7. Angry Birds Star Wars           8 ( 0.0%)                                                   
                       8. Cars                            8 ( 0.0%)                                                   
                       9. FIFA 15                         8 ( 0.0%)                                                   
                       10. FIFA Soccer 13                 8 ( 0.0%)                                                   
                       [ 12070 others ]               17327 (99.5%)         IIIIIIIIIIIIIIIIIII                       

2    Platform          1. DS                          2251 (12.9%)          II                    17416      0        
     [character]       2. PS2                         2206 (12.7%)          II                    (100.0%)   (0.0%)   
                       3. PS3                         1362 ( 7.8%)          I                                         
                       4. Wii                         1359 ( 7.8%)          I                                         
                       5. PSP                         1304 ( 7.5%)          I                                         
                       6. X360                        1298 ( 7.5%)          I                                         
                       7. PS                          1200 ( 6.9%)          I                                         
                       8. PC                          1128 ( 6.5%)          I                                         
                       9. GBA                          844 ( 4.8%)                                                    
                       10. X                           833 ( 4.8%)                                                    
                       [ 21 others ]                  3631 (20.8%)          IIII                                      

3    Year_of_Release   Mean (sd) : 2006.6 (5.9)       42 distinct values                  : :     17408      8        
     [numeric]         min < med < max:                                                   : :     (100.0%)   (0.0%)   
                       1976 < 2008 < 2017                                               : : : .                       
                       IQR (CV) : 8 (0)                                               . : : : :                       
                                                                                    . : : : : :                       

4    Genre             1. Action                      3503 (20.1%)          IIII                  17416      0        
     [character]       2. Sports                      2408 (13.8%)          II                    (100.0%)   (0.0%)   
                       3. Misc                        1813 (10.4%)          II                                        
                       4. Role-Playing                1545 ( 8.9%)          I                                         
                       5. Adventure                   1478 ( 8.5%)          I                                         
                       6. Shooter                     1349 ( 7.7%)          I                                         
                       7. Racing                      1282 ( 7.4%)          I                                         
                       8. Simulation                   925 ( 5.3%)          I                                         
                       9. Platform                     900 ( 5.2%)          I                                         
                       10. Fighting                    864 ( 5.0%)                                                    
                       [ 2 others ]                   1349 ( 7.7%)          I                                         

5    Publisher         1. Electronic Arts             1380 ( 7.9%)          I                     17416      0        
     [character]       2. Activision                  1005 ( 5.8%)          I                     (100.0%)   (0.0%)   
                       3. Namco Bandai Games           972 ( 5.6%)          I                                         
                       4. Ubisoft                      970 ( 5.6%)          I                                         
                       5. Konami Digital Entertainm    865 ( 5.0%)                                                    
                       6. THQ                          728 ( 4.2%)                                                    
                       7. Nintendo                     722 ( 4.1%)                                                    
                       8. Sony Computer Entertainme    704 ( 4.0%)                                                    
                       9. Sega                         660 ( 3.8%)                                                    
                       10. Take-Two Interactive        433 ( 2.5%)                                                    
                       [ 617 others ]                 8977 (51.5%)          IIIIIIIIII                                

6    NA_Sales          Mean (sd) : 0.3 (0.8)          399 distinct values   :                     17416      0        
     [numeric]         min < med < max:                                     :                     (100.0%)   (0.0%)   
                       0 < 0.1 < 41.4                                       :                                         
                       IQR (CV) : 0.2 (3.1)                                 :                                         
                                                                            :                                         

7    EU_Sales          Mean (sd) : 0.1 (0.5)          306 distinct values   :                     17416      0        
     [numeric]         min < med < max:                                     :                     (100.0%)   (0.0%)   
                       0 < 0 < 29                                           :                                         
                       IQR (CV) : 0.1 (3.5)                                 :                                         
                                                                            :                                         

8    JP_Sales          Mean (sd) : 0.1 (0.3)          245 distinct values   :                     17416      0        
     [numeric]         min < med < max:                                     :                     (100.0%)   (0.0%)   
                       0 < 0 < 10.2                                         :                                         
                       IQR (CV) : 0 (4)                                     :                                         
                                                                            :                                         

9    Other_Sales       Mean (sd) : 0 (0.2)            157 distinct values   :                     17416      0        
     [numeric]         min < med < max:                                     :                     (100.0%)   (0.0%)   
                       0 < 0 < 10.6                                         :                                         
                       IQR (CV) : 0 (4)                                     :                                         
                                                                            :                                         

10   Global_Sales      Mean (sd) : 0.5 (1.5)          627 distinct values   :                     17416      0        
     [numeric]         min < med < max:                                     :                     (100.0%)   (0.0%)   
                       0 < 0.2 < 82.5                                       :                                         
                       IQR (CV) : 0.4 (3)                                   :                                         
                                                                            :                                         

11   Critic_Score      Mean (sd) : 68.9 (14)          82 distinct values                  :       8336       9080     
     [numeric]         min < med < max:                                               . : :       (47.9%)    (52.1%)  
                       13 < 71 < 98                                                   : : : :                         
                       IQR (CV) : 19 (0.2)                                          . : : : :                         
                                                                                . : : : : : : :                       

12   Critic_Count      Mean (sd) : 26.2 (19)          106 distinct values   :                     8336       9080     
     [numeric]         min < med < max:                                     : :                   (47.9%)    (52.1%)  
                       3 < 21 < 113                                         : : .                                     
                       IQR (CV) : 25 (0.7)                                  : : : .                                   
                                                                            : : : : : . .                             

13   User_Score        Mean (sd) : 7.1 (1.5)          95 distinct values                    :     7798       9618     
     [numeric]         min < med < max:                                                   : :     (44.8%)    (55.2%)  
                       0 < 7.5 < 9.7                                                      : :                         
                       IQR (CV) : 1.8 (0.2)                                           . : : : .                       
                                                                                  . . : : : : :                       

14   User_Count        Mean (sd) : 162.7 (562.8)      903 distinct values   :                     7798       9618     
     [numeric]         min < med < max:                                     :                     (44.8%)    (55.2%)  
                       4 < 25 < 10766                                       :                                         
                       IQR (CV) : 71 (3.5)                                  :                                         
                                                                            :                                         

15   Rating            1. AO                             1 ( 0.0%)                                10252      7164     
     [character]       2. E                           4120 (40.2%)          IIIIIIII              (58.9%)    (41.1%)  
                       3. E10+                        1473 (14.4%)          II                                        
                       4. EC                             8 ( 0.1%)                                                    
                       5. K-A                            3 ( 0.0%)                                                    
                       6. M                           1599 (15.6%)          III                                       
                       7. RP                             3 ( 0.0%)                                                    
                       8. T                           3045 (29.7%)          IIIII                                     
----------------------------------------------------------------------------------------------------------------------

Looking at the data, I immediately know that there are a couple of adjustments I want to make. The first being a couple of changes to the Platform variable. First, I’d like to extract all unique values to get a complete list of platforms included in the data set.

Code
VGS <- Video_Game_Sales
Plat_List <- unique(select(VGS, "Platform"))

as.list(Plat_List, sorted = T)
$Platform
 [1] "Wii"  "NES"  "G"    "DS"   "X360" "PS3"  "PS2"  "SNES" "GBA"  "3DS" 
[11] "PS4"  "N64"  "PS"   "X"    "PC"   "2600" "PSP"  "XOne" "WiiU" "GC"  
[21] "GEN"  "DC"   "PSV"  "SAT"  "SCD"  "WS"   "NG"   "TG16" "3DO"  "GG"  
[31] "PCFX"

Next, I’ll duplicate the Platform column and re-code the values under the new variable so that they pertain to their respective manufacturer. This will clean up the data a bit and make analysis easier in the future.

Code
# Creating new variable (Manufacturer)
VGS$Manufacturer <- VGS$Platform

# Re-coding values under Manufacturer to accommodate analysis
VGS <- VGS %>% 
    mutate(Manufacturer=recode(Manufacturer, 
                         'PS4'='Sony',
                         'PS3'='Sony',
                         'PS2'='Sony',
                         'PS'='Sony',
                         'PSV'='Sony',
                         'PSP'='Sony',
                         'NES'='Nintendo',
                         'SNES'='Nintendo',
                         'N64'='Nintendo',
                         'GC'='Nintendo',
                         'DS'='Nintendo',
                         'Wii'='Nintendo',
                         'WiiU'='Nintendo',
                         'GBA'='Nintendo',
                         '3DS'='Nintendo',
                         'G'='Nintendo',
                         'GEN'='Sega',
                         'SCD'='Sega',
                         'GG'='Sega',
                         'SAT'='Sega',
                         'DC'='Sega',
                         'X'='Microsoft',
                         'X360'='Microsoft',
                         'XOne'='Microsoft',
                         'TG16'='NEC',
                         'PCFX'='NEC'))

Below, it can be seen that the re-coding worked!

Code
Manuf_List <- unique(select(VGS, "Manufacturer"))

as.list(Manuf_List, sorted = T)
$Manufacturer
 [1] "Nintendo"  "Microsoft" "Sony"      "PC"        "2600"      "Sega"     
 [7] "WS"        "NG"        "NEC"       "3DO"      

Now, I’d like draw out a list of unique values for the rest of the variables at my disposal to see what other adjustments need to be made to the data set.

The next list I’d like to generate is that of the unique values under the Genre variable, taking into account its importance in my hypothesis.

Code
Genre_List <- unique(select(VGS, "Genre"))

list(Genre_List)
[[1]]
# A tibble: 12 × 1
   Genre       
   <chr>       
 1 Sports      
 2 Platform    
 3 Racing      
 4 Role-Playing
 5 Puzzle      
 6 Misc        
 7 Shooter     
 8 Simulation  
 9 Action      
10 Fighting    
11 Adventure   
12 Strategy    

It’s shown that there are a total of 12 different genres within the applicable variable. Like Platform & Manufacturer, Genre would also be considered a categorical variable. Unlike the aforementioned variables, I do not believe Genre requires any further adjustment.

The next list I’d like to define is the one for the Publisher variable.

Code
Publisher_List <- unique(select(VGS, "Publisher"))

list(Publisher_List)
[[1]]
# A tibble: 627 × 1
   Publisher                  
   <chr>                      
 1 Nintendo                   
 2 Microsoft Game Studios     
 3 Take-Two Interactive       
 4 Sony Computer Entertainment
 5 Activision                 
 6 Ubisoft                    
 7 Electronic Arts            
 8 Bethesda Softworks         
 9 Sega                       
10 SquareSoft                 
# … with 617 more rows

It’s apparent that there are quite a few unique values under the Publisher variable, 627 to be exact. Simply put, there are too many unique values to efficiently conduct an analysis and control for the Publisher variable later on. In other words, the Publisher variable will over-complicate future models.

In order to accommodate this, I’ve decided to again create a new variable (Publisher_Code) and re-code the unique values to fit into 3 separate categories. Those 3 categories are defined by the size and scale of the respective publishing studio. The first level is equal to 1, defining single A (or independent) studios. The second is equal 2 for AA (or mid-size) studios and the last refers to AAA (or large-scale) studios, coded as 3.

Code
# Set values to 1 for independent publishers
VGS$Publisher_Code <- 1 # Initialize all values to 0

# Set values to 2 for AA publishers
VGS$Publisher_Code[VGS$Publisher == "505 Games" | VGS$Publisher == "Aksys Games" | VGS$Publisher == "Annapurna Interactive" | VGS$Publisher == "Arc System Works" | VGS$Publisher == "Atari SA" | VGS$Publisher == "Devolver Digital" | VGS$Publisher == "Focus Entertainment" | VGS$Publisher == "Frontier Developments" | VGS$Publisher == "Humble Games" | VGS$Publisher == "Koei Tecmo" | VGS$Publisher == "Tecmo Koei" | VGS$Publisher == "Marvelous Inc" | VGS$Publisher == "Microids" | VGS$Publisher == "miHoYo" | VGS$Publisher == "Nacon" | VGS$Publisher == "NCSoft" | VGS$Publisher == "Nippon Ichi Software" | VGS$Publisher == "Paradox Interactive" | VGS$Publisher == "Raw Fury" | VGS$Publisher == "SNK" | VGS$Publisher == "SNK Playmore" | VGS$Publisher == "Spike Chunsoft" | VGS$Publisher == "ChunSoft" | VGS$Publisher == "Team17" | VGS$Publisher == "Team17 Software" | VGS$Publisher == "tinyBuild" | VGS$Publisher == "Thunderful Group" | VGS$Publisher == "Warner Bros. Interactive Entertainment" | VGS$Publisher == "Time Warner Interactive" | VGS$Publisher == "WayForward" | VGS$Publisher == "WayForward Technologies" | VGS$Publisher == "FromSoftware" | VGS$Publisher == "Infogrames" | VGS$Publisher == "Atari"| VGS$Publisher == "Deep Silver"| VGS$Publisher == "Insomniac Games" | VGS$Publisher == "LucasArts" | VGS$Publisher == "Midway Games" | VGS$Publisher == "Nordic Games" | VGS$Publisher == "THQ"] <- 2

# Set values to 3 for AAA publishers
VGS$Publisher_Code[VGS$Publisher == "Sony Interactive Entertainment" | VGS$Publisher == "Sony Computer Entertainment" | VGS$Publisher == "Sony Music Entertainment" | VGS$Publisher == "Sony Online Entertainment" | VGS$Publisher == "Tencent Games" | VGS$Publisher == "Nintendo" | VGS$Publisher == "Microsoft Game Studios" | VGS$Publisher == "NetEase" | VGS$Publisher == "Activision Blizzard" | VGS$Publisher == "Activision" | VGS$Publisher == "Activision Value" | VGS$Publisher == "Bethesda Softworks" | VGS$Publisher == "Electronic Arts" | VGS$Publisher == "EA Games" | VGS$Publisher == "Take-Two Interactive" | VGS$Publisher == "Bandai Namco Entertainment" | VGS$Publisher == "Namco Bandai Games" | VGS$Publisher == "Square Enix" | VGS$Publisher == "Enix Corporation" | VGS$Publisher == "Nexon" | VGS$Publisher == "Netmarble" | VGS$Publisher == "Ubisoft" | VGS$Publisher == "Ubisoft Annecy" | VGS$Publisher == "Konami" | VGS$Publisher == "Konami Digital Entertainment" | VGS$Publisher == "Sega" | VGS$Publisher == "Capcom" | VGS$Publisher == "Embracer Group" | VGS$Publisher == "Gearbox Software" | VGS$Publisher == "Square" | VGS$Publisher == "Square EA" | VGS$Publisher == "SquareSoft"] <- 3

P_Code_List <- unique(select(VGS, "Publisher_Code"))

list(P_Code_List)
[[1]]
# A tibble: 3 × 1
  Publisher_Code
           <dbl>
1              3
2              2
3              1

The next list I want to generate is that for the Rating variable.

Code
Rating_List <- na.omit(unique(select(VGS, "Rating")))

list(Rating_List)
[[1]]
# A tibble: 8 × 1
  Rating
  <chr> 
1 E     
2 M     
3 T     
4 E10+  
5 K-A   
6 AO    
7 EC    
8 RP    

Shown here, there are a total of 8 different ratings for games within the data set that I’ll be utilizing. These values include ratings currently utilized among the ESRB (Entertainment Software Rating Board) and those that existed prior to its formation. Those ratings are defined as:

  1. RP = Rating Pending
  2. EC = Early Childhood
  3. E = Everyone
  4. K-A = Kids through Adults (Replaced by the E rating after the formation of the ESRB)
  5. E10+ = Everyone age 10 and up
  6. T = Teens
  7. M = Mature
  8. AO = Adults Only

While simple and categorical in nature, I’d like to re-code this variable to be ordinal so that it can reflect the progressive inclusion of mature content through the ratings. The new variable, Rating_Code, will output numeric values associated with each rating. 1 for RP, 2 for EC, 3 for E & K-A, 4 for E10+, 5 for T, 6 for M and 7 for AO. I decided to join the E & K-A rating, because they effectively define the same thing. This also results in a decrease from 8 to 7 unique values.

Code
VGS$Rating_Code <- VGS$Rating

VGS <- VGS %>% 
  mutate(Rating_Code = recode(Rating_Code,
                            "RP"='1',
                            "EC"='2',
                            "E"='3',
                            "K-A"='3',
                            "E10+"='4',
                            "T"='5',
                            "M"='6',
                            "AO"='7'))

R_Code_List <- na.omit(unique(select(VGS, "Rating_Code")))

list(R_Code_List)
[[1]]
# A tibble: 7 × 1
  Rating_Code
  <chr>      
1 3          
2 6          
3 5          
4 4          
5 7          
6 2          
7 1          

With all the categorical variables now re-coded into something appropriate for an analysis, all that remains are the Critic_Score and User_Score variables. Both are numerical, continuous variables that I believe require no further transformations.

Since there are no further adjustments I’d like to make, I want to generate the descriptive statistics once again, this time utilizing the newly created variables.

Code
VGS_select <- VGS %>% 
  select(Genre, Manufacturer, Rating_Code, Publisher_Code, Critic_Score, User_Score, Global_Sales)

VGS_Desc <- describe(x=VGS_select) %>% 
  select(c(vars, n, mean, sd, median, min, max, range))

kable(VGS_Desc) %>% 
  kable_styling("striped")
vars n mean sd median min max range
Genre* 1 17416 5.8861966 3.7733097 6.00 1.00 12.00 11.00
Manufacturer* 2 17416 6.8492765 2.1116870 6.00 1.00 10.00 9.00
Rating_Code* 3 10252 4.2046430 1.1348738 4.00 1.00 7.00 6.00
Publisher_Code 4 17416 2.1639871 0.9038042 3.00 1.00 3.00 2.00
Critic_Score 5 8336 68.9125480 13.9649370 71.00 13.00 98.00 85.00
User_Score 6 7798 7.1170557 1.5024102 7.50 0.00 9.70 9.70
Global_Sales 7 17416 0.5164693 1.5261242 0.16 0.01 82.54 82.53

The data is looking much more manageable!

Single Variable Visualizations

Next, I’d like to draw up my explanatory and control variables to visualize the distribution of each and see if there are any last-minute adjustments that I’d like to make. The first variable that I will be visualizing is the Manufacturer variable.

Code
# Simple Bar Plot for Manufacturer Frequency
M_counts <- table(VGS$Manufacturer)
barplot(M_counts, main = "Manufacturer Distribution",
   xlab = "Manufacturer",
   ylab = "Frequency",
   ylim = c(0, 7000))

It looks like the existing data for the 2600, 3DO, NEC, NG, Sega and WS manufacturers is so small in comparison to the others that it’s practically negligible. I don’t want this to adversely affect my analysis so I’ll remove those rows from the data frame.

Code
VGS2 <- VGS[VGS$Manufacturer %in% c("Sony", "Microsoft", "Nintendo", "PC"),]

M_counts2 <- table(VGS2$Manufacturer)
barplot(M_counts2, main = "Manufacturer Distribution",
   xlab = "Manufacturer",
   ylab = "Frequency",
   ylim = c(0, 7000))

With the aforementioned values excluded, I see that a majority of games within my data set are released among Nintendo and Sony manufactured platforms. While this is supportive of my hypothesis (Nintendo and Sony hosting the most financially successful games), I’ll continue to visualize the remaining variables and refrain from making conclusions until my analysis is complete.

Now it’s time to draw up the Genre variable.

Code
G_counts <- table(VGS2$Genre)
barplot(G_counts, main = "Genre Distribution",
   xlab = "Genre",
   ylab = "Frequency",
   ylim = c(0, 3500))

In this case, it seems all genres have adequate data and no further changes need to be made. However, I’d like to note that the Shooter genre is not one of the most frequently occurring within the data set. While this is not immediately indicative of financial success within the genre, like Manufacturer, I’ll refrain from making any direct conclusions until the analysis is over.

Next, I’d like to visualize the newly created Publisher_Code variable.

Code
P_counts <- table(VGS2$Publisher_Code)
barplot(P_counts, main = "Publisher Distribution",
  names.arg = c("A", "AA", "AAA"),
  horiz = T,
  xlab = "Frequency",
  ylab = "Publisher",
  xlim = c(0, 10000))

According to this distribution, it seems that games released by AAA publishers are the most frequently occurring within the data frame. With that in mind, there is now the potential that AAA publishers are more likely to release financially successful games when compared to other smaller publishers. However, again, definitive conclusions will be withheld until after the analysis is conducted.

I’d also like to visualize both the continuous variables that I’ll also be controlling for in future models, Critic_Score and User_Score.

I will also be omitting all NA values to remove any entries corresponding to games that were released prior to the incorporation of critic and user scores. This is so that I can accurately control for these variables in future models. After the omission, there are still 7,098 entries remaining within the data frame.

Code
VGS2 <- na.omit(VGS2)

histogram(VGS2$Critic_Score,
  type = c("percent"),
  main = "Critic Score Distribution",
  xlab = "Critic Score",
  ylab = "Percentage")

The data visualized by the Critic_Score variable displays a normal, right-skewed distribution centered at an approximate value of 70-75.

Now, I’d like to see if the User_Score distribution reflects the same thing.

Code
histogram(VGS2$User_Score,
  type = c("percent"),
  main="User Score Distribution",
  xlab = "User Score",
  ylab = "Percentage")

While the scale of each variable differs (Critic_Score rated on a scale of 0-100 & User_Score rated on a scale of 0-10), the distribution visualized above is very similar to that of Critic_Score. The User_Score visualization shows a right-skewed, normally distributed plot centered, this time, at approximately 8-8.5 (compared to the center being at approximately 70-75 for the Critic_Score variable).

The last variable I want to draw up is Rating.

Code
R_counts <- table(VGS2$Rating_Code)
barplot(R_counts, main = "Rating Distribution",
  names.arg = c("EC", "E & K-A", "E10+", "T", "M", "AO"),
  xlab = "Rating",
  ylab = "Frequency")

It seems that with the omission of NA values in previous chunks, RP rated games have been completely eliminated from the data set. Furthermore, similar to Manufacturer, there are some irrelevant pieces of data that I think my analysis could do without. Under these circumstances, I’ll be eliminating any rows containing ratings of AO and EC.

I will also be re-coding the remaining values to retain the ordinal nature of the variable that I previously intended to utilize. The new order will be as follows:

1 = E & K-A

2 = E10+

3 = T

4 = M

Code
VGS3 <- VGS2[VGS2$Rating_Code %in% c("3", "4", "5", "6"),]

VGS3 <- VGS3 %>% 
  mutate(Rating = recode(Rating,
                            "E" = "E & K-A",
                            "K-A" = "E & K-A"))

VGS3 <- VGS3 %>% 
  mutate(Rating_Code = recode(Rating_Code,
                            '3' = '1',
                            '4' = '2',
                            '5' = '3',
                            '6' = '4'))

R_counts2 <- table(VGS3$Rating_Code)
barplot(R_counts2, main = "Rating Distribution",
  names.arg = c("E & K-A", "E10+", "T", "M"),
  xlab = "Rating",
  ylab = "Frequency",
  ylim = c(0, 2500))

With this last adjustment made, the final entry count for the data set I’ll be utilizing throughout the remainder of my project is 7,095 games.

It’s easy to see here that the most frequently occurring ratings within the data are E & K-A , as well as T.

With all the modifications to my data frame complete and all preliminary visualizations generated, I will be moving on to hypothesis testing.

Multi-Variable Visualizations

Within this sub-section are a series of visualizations pairing multiple independent variables together. While not within the scope of my project, I do believe they can help expand the description of my data and provide insight into what my results might look like later on in my analysis. Even so, I do not find it necessary to provide an interpretation for each graph. More so, I will be utilizing this section as a sort of appendix of extra visualizations, each providing an additional dimension to my data.

Code
table1 <- data.frame(with(VGS3, table(Manufacturer,Publisher_Code)))

ggplot(table1, aes(x=Manufacturer,y=Freq, fill=Publisher_Code))+
  geom_bar(stat="identity",position="dodge")+
  scale_fill_discrete(name = "Publisher Code",labels = c("A", "AA", "AAA")) +
  ggtitle("Distribution of Manufacturer per Publisher Code")

Code
table2 <- data.frame(with(VGS3, table(Manufacturer,Rating_Code)))

ggplot(table2, aes(x=Manufacturer,y=Freq, fill=Rating_Code))+
  geom_bar(stat="identity",position="dodge")+
  scale_fill_discrete(name = "Rating",labels = c("E & K-A", "E10+", "T", "M")) +
  ggtitle("Distribution of Manufacturer per Rating")

Code
table3 <- data.frame(with(VGS3, table(Genre,Manufacturer)))

GM <- ggplot(table3, aes(x=Genre,y=Freq, fill=Manufacturer))+
  geom_bar(stat="identity",position="dodge")

GM + 
  ggtitle("Distribution of Genre per Manufacturer") + 
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))

Code
table4 <- data.frame(with(VGS3, table(Genre,Publisher_Code)))

GP <- ggplot(table4, aes(x=Genre,y=Freq, fill=Publisher_Code))+
  geom_bar(stat="identity",position="dodge")+
  scale_fill_discrete(name = "Publisher Code",labels = c("A", "AA", "AAA"))

GP + 
  ggtitle("Distribution of Genre per Publisher Code") + 
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))

Code
table5 <- data.frame(with(VGS3, table(Genre,Rating_Code)))

GR <- ggplot(table5, aes(x=Genre,y=Freq, fill=Rating_Code)) +
  geom_bar(stat="identity",position="dodge") +
  scale_fill_discrete(name = "Rating",labels = c("E & K-A", "E10+", "T", "M"))

GR + 
  ggtitle("Distribution of Genre per Rating") + 
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))

Hypothesis Testing

To start the hypothesis testing section I’d like to redefine each variables as being either an Explanatory, Response, or Control Variable.

Explanatory Variables

  1. Genre
  2. Manufacturer

Response Variable

  1. Global Sales

Control Variables

  1. Publisher Code
  2. Critic Score
  3. User Score
  4. Rating Code

Models

My final results should include 7 total models. Each one will incorporate a variant number of control variables. My intention with 7th model, however, is to include some sort of interaction between my independent variables. The goal, ultimately, will be to identify the best fitting model that can accurately determine the success of a video game when controlled for a certain combination of variables.

Independence Testing

The purpose of this sub-section is to test different combinations of my variables against the response to determine whether or not they are independent of each other. Throughout this section, I will also be testing my explanatory variables against the controls to see if I should include interaction terms later on in the modelling section.

Before I begin testing, it’s important to note that 3 of the variables that I will be testing are categorical (Genre, Manufacturer & Publisher_Code) and 1 is ordinal (Rating_Code). The remaining 3 are continuous (Global_Sales, Critic_Score & User_Score).

The first test that I’ll be utilizing is the One-Way ANOVA, a test capable of determining independence between a single categorical and dependent continuous variable. In this sub-section I will be testing the aforementioned categorical and ordinal variables against Global_Sales.

The 2nd and last test I will be using is the Welch Two Sample t-test, a test capable of interpreting independence between 2 continuous variables (assuming unequal population variance from previous visualizations). This sub-section will see me testing my continuous control variables against Global_Sales.

ANOVA

First up, for the ANOVA tests, is the Manufacturer variable against my response, Global_Sales.

Code
M_aov <- aov(Global_Sales ~ Manufacturer, data = VGS3)

summary(M_aov)
               Df Sum Sq Mean Sq F value   Pr(>F)    
Manufacturer    3    217   72.22   19.36 1.69e-12 ***
Residuals    7091  26448    3.73                     
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Here I can see that my resulting Pr(>F) value is extremely small, suggesting I reject the null at a significance level of 0.001. This means the Manufacturer means are significantly different, establishing that these 2 variables are indeed independent of one another. With this new information, I’d like to visualize the data again, this time using a boxplot to outline the range, mean and any outliers present for each category.

I’ve generated 2 visualizations below. The first shows the entire scope of the data. Unfortunately, due to outliers, it’s impossible to make any decisive observations from this plot. However, I still wanted to include it to provide the full scope of the data and retain a “complete” visualization. I did, however, create a second graph, to mitigate the issue and visualize the ranges and means more clearly.

Note: I’ve done the same for future, applicable visualizations as well.

Code
ggplot(VGS3, mapping = aes(x=Manufacturer, y=Global_Sales))+
    geom_boxplot() +
    labs(title = "Distribution of Global Sales per Manufacturer", y = "Global Sales (millions)") 

Code
limit <- c(0, 1)

ggplot(VGS3, mapping = aes(x=Manufacturer, y=Global_Sales))+
    geom_boxplot() +
    labs(title = "Distribution of Global Sales per Manufacturer", y = "Global Sales (millions)") +
    scale_y_continuous(breaks = seq(from =0, to = 1, by = .25),
                       limits = limit)

The first graph shows the full extent of the data, revealing that Nintendo platforms host more games that sell well than any other platforms. Additionally, I’d like to acknowledge the one extreme outlier, for Nintendo, resting at about 85 million dollars in global sales. From a glance, I can also see that Microsoft and Sony are nearly comparable in their performance, with PC being the lowest performing.

The second graph is much easier to read and more telling than the first. Here I see that Sony actually has the largest range when compared to the other platforms and a higher mean of sales as well. From this visualization, I can also see that Microsoft and Nintendo are much more comparable than I had originally deemed them to be. Their means seem to be near equal, with the range of values for Nintendo games sitting just below that of Microsoft. Still, the range and mean for PC games sits far below any of the other platforms, strongly suggesting that PC games do not sell as well as those belonging to the aforementioned manufacturers.

Next I’ll be testing whether the population means among the category Genre are significantly different as well.

Code
G_aov <- aov(Global_Sales ~ Genre, data = VGS3)

summary(G_aov)
              Df Sum Sq Mean Sq F value   Pr(>F)    
Genre         11    234  21.288   5.705 3.15e-09 ***
Residuals   7083  26431   3.732                     
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Again, I received an extremely small F-value (although not as small as the test including Manufacturer) telling me that the Genre means are significantly different as well.

I’d like to visualize these variables together like I did for the Manufacturer variable.

Code
G_plot1 <- ggplot(VGS3, mapping = aes(x=Genre, y=Global_Sales))+
    geom_boxplot() +
    labs(title = "Distribution of Global Sales per Genre", y = "Global Sales (millions)")

G_plot1 +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))

Code
G_plot2 <- ggplot(VGS3, mapping = aes(x=Genre, y=Global_Sales))+
    geom_boxplot() +
    labs(title = "Distribution of Global Sales per Genre", y = "Global Sales (millions)") +
    scale_y_continuous(breaks = seq(from =0, to = 1, by = .25),
                       limits = limit)

G_plot2 +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))

From the first graph I can see that the Action, Racing and Shooter genres seem to sell the best when not taking into consideration the outliers. This would be in direct support of my hypothesis (The Shooter genre is the most financially successful genre when compared to all others), but I would need to conduct further analysis before making any definitive claims. Otherwise, the worst selling genres seem to be Adventure, Puzzle and Strategy games. It is important to note, however, that the outliers for the Sports genre seem to sell extremely well and may affect the impact it has on models later on.

It’s immediately apparent in the second graph that the effect of outliers on the range and mean for the Sports genre has indeed been exacerbated. Both appear to be significantly larger/higher than that of any of the other genres and I will choose to ignore it in this context until I conduct further analysis and fit my models. With that aside, it seems that a majority of the genres are much more comparable than I thought. 8 of the 12 genres have very similar means and ranges, only varying by approximately a tenth of a million dollars in sales, making it difficult to suggest any preliminary conclusions. I’m interested to see what information my models bring forth later on.

From here, I will be moving on to testing my control variables against the response with the first being Publisher_Code.

Code
P_aov <- aov(Global_Sales ~ Publisher_Code, data = VGS3)

summary(P_aov)
                 Df Sum Sq Mean Sq F value Pr(>F)    
Publisher_Code    1    705   704.8   192.6 <2e-16 ***
Residuals      7093  25960     3.7                   
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

From this test I’ve received the lowest resulting >F value thus far, again suggesting that the means are significantly different at p < 0.001.

Due to the nature of the Publisher_Code variable, I will be utilizing a column plot for my visualization instead of a boxplot.

Code
ggplot(VGS3, mapping = aes(x=Publisher_Code, y=Global_Sales))+
    geom_col() +
    labs(title = "Distribution of Global Sales per Publisher Code", y = "Global Sales (millions)", x = "Publisher Code")

As a reminder, the 1 value is equal to A tier publishers, 2 is equal to AA publishers and 3 is equal to AAA publishers.

It’s obvious from this plot that AAA publishers generate the most in global sales, with AA publishers coming in 2nd and A publishers generating the least. With that said, the difference in sales when comparing the 3 is staggering. Combining the sales of both the A and AA publishers wouldn’t equate to even half of the global sales generated by the AAA publishers. While not immediately significant to my hypothesis, this begs the question; do AAA publishers have an unfair advantage when compared to the others? While this isn’t something that I’ll be investigating through the scope of my project, the results here are interesting and it could be something worth eventually looking into.

The last ANOVA test involving Global_Sales will decide whether the Rating_Code means are significantly different as well.

Code
R_aov <- aov(Global_Sales ~ Rating_Code, data = VGS3)

summary(R_aov)
              Df Sum Sq Mean Sq F value   Pr(>F)    
Rating_Code    3    254   84.67   22.73 1.21e-14 ***
Residuals   7091  26411    3.72                     
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Yet again, it looks like I’ve received another small F-value telling me that the Rating_Code means are significantly different and that both variables are again independent of each other.

Now, I will proceed with the visualization, returning to my boxplot method.

Code
VGS3$Rating <- factor(VGS3$Rating, levels = c("E & K-A", "E10+", "T", "M"))

ggplot(VGS3, mapping = aes(x=Rating, y=Global_Sales))+
    geom_boxplot() +
    labs(title = "Distribution of Global Sales per Rating", y = "Global Sales (millions)")

Code
ggplot(VGS3, mapping = aes(x=Rating, y=Global_Sales))+
    geom_boxplot() +
    labs(title = "Distribution of Global Sales per Rating", y = "Global Sales (millions)") +
    scale_y_continuous(breaks = seq(from =0, to = 1, by = .25),
                       limits = limit)

It’s visible in the first plot that E/K-A games seem to have the highest number of outliers exceeding 20 million dollars in global sales, with their range even being slightly visible even from this scale. However, unlike the Genre visualization, I do believe that the consistency of these outliers is indicative of success among the rating and will end up proving to be statistically significant during model analysis. I’d also like to bring attention to the fact that the range of M rated games is also slightly visible. As such, I believe that rated M games will also prove to have a significant impact on Global_Sales.

From the second graph, I can see that E/K-A games have the widest range of values out of any of the other genres. However, the range and mean for E/K-A games do still seem relatively comparable to the rest, in contrast to my initial predictions. I do not believe there are any further conclusions I can make from this plot, but I still suspect that the impact of E/K-A and Mature rated games on Global_Sales will be the most significant later on.

Welch Two Sample t-test

Continuing with my independence testing, I will be comparing continuous variable Critic_Score against Global_Sales, this time using a Welch Two Sample t-test.

Code
t.test(VGS3$Critic_Score, VGS3$Global_Sales)

    Welch Two Sample t-test

data:  VGS3$Critic_Score and VGS3$Global_Sales
t = 417.1, df = 7370.5, p-value < 2.2e-16
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 69.10270 69.75529
sample estimates:
 mean of x  mean of y 
70.1952079  0.7662128 

From this test, I received an extremely low p-value. Like the ANOVA, this tells me that the the means between both variables are significantly different and both variables are independent of each other. I’d also like to point out the “mean of x” value (70.20) provided here. This is seems to track with my previous prediction and I’d like to compare it to the value received when I test the User_Score variable. Now for the visualization.

For this graph, I’ll be utilizing a column plot which seems to be more effective for continuous variables.

Code
ggplot(VGS3, mapping = aes(x = Critic_Score, y = Global_Sales))+
    geom_col() +
    labs(title = "Distribution of Global Sales per Critic Score", y = "Global Sales (millions)", x = "Critic Score")

From this plot, I can see that the trend continues to appear normally distributed. Additionally, it does seem as though the relationship between Global_Sales & Critic_Score is positive up to a certain point (approximately 85-90). Afterwards, the higher the score gets, the more Global_Sales seemingly drops. I suspect the same thing to happen when testing User_Score.

I will now be testing the aforementioned User_Score variable against Global_Sales in an identical manner.

Code
t.test(VGS3$User_Score, VGS3$Global_Sales)

    Welch Two Sample t-test

data:  VGS3$User_Score and VGS3$Global_Sales
t = 223.28, df = 13111, p-value < 2.2e-16
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 6.351559 6.464063
sample estimates:
mean of x mean of y 
7.1740240 0.7662128 

For this test, the p-value I receive for User_Score is identical to that of Critic_Score, once again telling me that the means between the tested variables are significantly different. Noting the mean of x value again, it’s actually much lower than I expected, however, it’s nearly identical to that of the Critic_Score test which presents the significant potential of a trend concerning the impact of these controls on the response variable.

I will now be visualizing these variables together the same way I did for Critic_Score.

Code
ggplot(VGS3, mapping = aes(x = User_Score, y = Global_Sales))+
    geom_col() +
    labs(title = "Distribution of Global Sales per User Score", y = "Global Sales (millions)", x = "User Score")

The information provided by this graph is nearly identical to that which I received from the Critic_Score visualization (when scaled to match each other). The one major difference I notice is that the drop off point, from which the relationship between both variables turns negative, occurs at a much lower score than the previous visualization. Additionally, the rate at which the relationship increases and decreases before and after the peak seems to be much more sheer, hinting at an exponential relationship between the 2 variables tested here.

Model Comparisons

In this section I will begin fitting a series of models in order to determine which is best at predicting the effect a video game has on global sales. I’ve fit a total of 7 models. The 1st included only 1 of the explanatory variables (Manufacturer), with Global_Sales set as the response (or “y”). After the 1st, each additional model progressively adds a single variable to the equation. Therefore, the 2nd includes 2 variables (instead of 1) and the response, the 3rd contains 3 variables and the response, the 4th, 4 variables and the response… and so on.

The 7th model, however, is slightly different. In this model, I decided to include an interaction between an assortment of my variables. Based on the data and predictions I’ve made thus far, I decided to host an interaction between 5 of the 6 independent variables, those being Manufacturer, Genre, Publisher_Code, Critic_Score and Rating_Code. The main reason I decided to exclude User_Score from this interaction is ultimately because I do not believe the impact user ratings have on global sales is as significant as any of the other variables. From personal knowledge, I know that critics often provide their ratings for video games prior to their full release on the market. As you can imagine, this is often utilized as a strong marketing tactic, used to boost anticipation for upcoming releases. However, user ratings only come into play after the games full release and I would assume, at that point, enough people would have already purchased said video game to significantly impact global sales (regardless of public reception after release). Therefore, I excluded User_Score from the interaction and kept it as a control.

Now, with the models fitted, I will summarize them utilizing the stargazer function.

View Code
Code
VGS3$Manufacturer2 <- as.factor(VGS3$Manufacturer)

VGS3$Manufacturer2 <- relevel(VGS3$Manufacturer2, ref = 'Nintendo')

fit1 <- lm(Global_Sales ~ Manufacturer2, data = VGS3)
fit2 <- lm(Global_Sales ~ Manufacturer2 + Genre, data = VGS3)
fit3 <- lm(Global_Sales ~ Manufacturer2 + Genre + Publisher_Code, data = VGS3)
fit4 <- lm(Global_Sales ~ Manufacturer2 + Genre + Publisher_Code + Critic_Score, data = VGS3)
fit5 <- lm(Global_Sales ~ Manufacturer2 + Genre + Publisher_Code + Critic_Score + User_Score, data = VGS3)
fit6 <- lm(Global_Sales ~ Manufacturer2 + Genre + Publisher_Code + Critic_Score + User_Score + Rating_Code, data = VGS3)
fit7 <- lm(Global_Sales ~ Manufacturer2*Genre*Publisher_Code*Critic_Score*Rating_Code + User_Score, data = VGS3)

stargazer(fit1, fit2, fit3, fit4, fit5, fit6, fit7, type = 'text')

=====================================================================================================================================================================================================================================================================
                                                                                                                                                                  Dependent variable:                                                                                
                                                                                  -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
                                                                                                                                                                     Global_Sales                                                                                    
                                                                                            (1)                      (2)                       (3)                       (4)                       (5)                       (6)                       (7)           
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Manufacturer2Microsoft                                                                     -0.106                  -0.146**                 -0.154**                  -0.234***                 -0.271***                 -0.289***                   3.615          
                                                                                          (0.066)                  (0.068)                   (0.067)                   (0.065)                   (0.065)                   (0.068)                  (13.663)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC                                                                          -0.585***                -0.541***                 -0.515***                 -0.800***                 -0.891***                 -0.926***                  -14.506         
                                                                                          (0.084)                  (0.088)                   (0.087)                   (0.086)                   (0.087)                   (0.089)                  (70.924)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony                                                                          -0.003                   -0.012                   -0.016                    -0.095*                   -0.102*                   -0.109*                    1.148          
                                                                                          (0.058)                  (0.059)                   (0.058)                   (0.057)                   (0.056)                   (0.059)                   (4.575)         
                                                                                                                                                                                                                                                                     
GenreAdventure                                                                                                    -0.407***                 -0.269**                  -0.246**                   -0.231*                  -0.259**                   -1.590          
                                                                                                                   (0.129)                   (0.128)                   (0.124)                   (0.124)                   (0.124)                   (4.166)         
                                                                                                                                                                                                                                                                     
GenreFighting                                                                                                       -0.118                   -0.063                    -0.159                    -0.157                    -0.068                    -1.162          
                                                                                                                   (0.108)                   (0.107)                   (0.104)                   (0.104)                   (0.106)                   (5.776)         
                                                                                                                                                                                                                                                                     
GenreMisc                                                                                                          0.298***                 0.287***                  0.269***                   0.235**                   0.266**                    0.282          
                                                                                                                   (0.108)                   (0.106)                   (0.103)                   (0.103)                   (0.106)                   (3.169)         
                                                                                                                                                                                                                                                                     
GenrePlatform                                                                                                       0.153                     0.145                     0.048                     0.053                     0.050                     5.358          
                                                                                                                   (0.107)                   (0.105)                   (0.103)                   (0.102)                   (0.107)                   (3.284)         
                                                                                                                                                                                                                                                                     
GenrePuzzle                                                                                                         -0.159                   -0.036                    -0.234                    -0.254                    -0.296*                   -0.079          
                                                                                                                   (0.179)                   (0.177)                   (0.173)                   (0.172)                   (0.176)                   (4.032)         
                                                                                                                                                                                                                                                                     
GenreRacing                                                                                                         0.080                    0.168*                     0.089                     0.073                     0.060                     4.532          
                                                                                                                   (0.092)                   (0.091)                   (0.088)                   (0.088)                   (0.095)                   (3.141)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing                                                                                                   -0.030                    0.011                    -0.157*                   -0.136*                   -0.091                     0.608          
                                                                                                                   (0.085)                   (0.084)                   (0.083)                   (0.082)                   (0.083)                   (7.390)         
                                                                                                                                                                                                                                                                     
GenreShooter                                                                                                       0.259***                 0.273***                   0.191**                   0.171**                    0.103                    -1.642          
                                                                                                                   (0.080)                   (0.079)                   (0.077)                   (0.077)                   (0.078)                   (6.309)         
                                                                                                                                                                                                                                                                     
GenreSimulation                                                                                                     0.035                     0.021                    -0.016                    -0.008                     0.045                     0.572          
                                                                                                                   (0.120)                   (0.118)                   (0.115)                   (0.115)                   (0.117)                   (4.108)         
                                                                                                                                                                                                                                                                     
GenreSports                                                                                                         0.129*                    0.007                   -0.167**                  -0.210***                 -0.264***                   0.452          
                                                                                                                   (0.077)                   (0.077)                   (0.076)                   (0.076)                   (0.088)                   (3.876)         
                                                                                                                                                                                                                                                                     
GenreStrategy                                                                                                      -0.306**                  -0.222*                  -0.333***                 -0.318***                  -0.227*                    6.919          
                                                                                                                   (0.126)                   (0.124)                   (0.121)                   (0.121)                   (0.122)                  (11.696)         
                                                                                                                                                                                                                                                                     
Publisher_Code                                                                                                                              0.370***                  0.250***                  0.237***                  0.233***                   -1.053          
                                                                                                                                             (0.028)                   (0.028)                   (0.028)                   (0.028)                   (1.026)         
                                                                                                                                                                                                                                                                     
Critic_Score                                                                                                                                                          0.033***                  0.041***                  0.041***                   -0.005          
                                                                                                                                                                       (0.002)                   (0.002)                   (0.002)                   (0.038)         
                                                                                                                                                                                                                                                                     
User_Score                                                                                                                                                                                      -0.123***                 -0.121***                 -0.119***        
                                                                                                                                                                                                 (0.019)                   (0.019)                   (0.021)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure                                                                                                                                                                                                                -1.256          
                                                                                                                                                                                                                                                    (12.135)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure                                                                                                                                                                                                                       21.095          
                                                                                                                                                                                                                                                    (141.134)        
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure                                                                                                                                                                                                                     -0.983          
                                                                                                                                                                                                                                                     (7.795)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting                                                                                                                                                                                                                 -1.337          
                                                                                                                                                                                                                                                    (15.390)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting                                                                                                                                                                                                                         4.123          
                                                                                                                                                                                                                                                    (12.192)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting                                                                                                                                                                                                                      -1.643          
                                                                                                                                                                                                                                                     (6.107)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc                                                                                                                                                                                                                     -10.063         
                                                                                                                                                                                                                                                    (14.746)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc                                                                                                                                                                                                                            37.341          
                                                                                                                                                                                                                                                    (49.902)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc                                                                                                                                                                                                                          -1.619          
                                                                                                                                                                                                                                                     (6.011)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform                                                                                                                                                                                                                 -10.513         
                                                                                                                                                                                                                                                    (24.551)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform                                                                                                                                                                                                                        -1.261          
                                                                                                                                                                                                                                                    (46.057)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform                                                                                                                                                                                                                      -4.091          
                                                                                                                                                                                                                                                     (7.147)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle                                                                                                                                                                                                                    6.124          
                                                                                                                                                                                                                                                     (7.739)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle                                                                                                                                                                                                                           9.094          
                                                                                                                                                                                                                                                    (49.440)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle                                                                                                                                                                                                                        10.687          
                                                                                                                                                                                                                                                    (19.617)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing                                                                                                                                                                                                                   -8.333          
                                                                                                                                                                                                                                                    (13.983)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing                                                                                                                                                                                                                           8.311          
                                                                                                                                                                                                                                                    (71.311)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing                                                                                                                                                                                                                        -3.751          
                                                                                                                                                                                                                                                     (5.401)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing                                                                                                                                                                                                              4.311          
                                                                                                                                                                                                                                                    (13.984)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing                                                                                                                                                                                                                     2.384          
                                                                                                                                                                                                                                                    (13.821)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing                                                                                                                                                                                                                  -0.157          
                                                                                                                                                                                                                                                    (17.081)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter                                                                                                                                                                                                                   3.632          
                                                                                                                                                                                                                                                     (6.371)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter                                                                                                                                                                                                                         -0.039          
                                                                                                                                                                                                                                                     (8.497)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter                                                                                                                                                                                                                       -2.064          
                                                                                                                                                                                                                                                    (21.303)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation                                                                                                                                                                                                               -4.192          
                                                                                                                                                                                                                                                    (16.202)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation                                                                                                                                                                                                                      14.680          
                                                                                                                                                                                                                                                    (71.594)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation                                                                                                                                                                                                                    -3.143          
                                                                                                                                                                                                                                                     (7.598)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports                                                                                                                                                                                                                   -4.498          
                                                                                                                                                                                                                                                    (14.237)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports                                                                                                                                                                                                                           8.978          
                                                                                                                                                                                                                                                    (334.446)        
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports                                                                                                                                                                                                                        -1.834          
                                                                                                                                                                                                                                                     (5.777)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy                                                                                                                                                                                                                 -9.020          
                                                                                                                                                                                                                                                    (44.269)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy                                                                                                                                                                                                                         3.439          
                                                                                                                                                                                                                                                    (65.867)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy                                                                                                                                                                                                                      -7.533          
                                                                                                                                                                                                                                                    (50.382)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code                                                                                                                                                                                                                -1.784          
                                                                                                                                                                                                                                                     (4.763)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code                                                                                                                                                                                                                        5.512          
                                                                                                                                                                                                                                                    (23.600)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code                                                                                                                                                                                                                     -0.599          
                                                                                                                                                                                                                                                     (1.840)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code                                                                                                                                                                                                                         1.180          
                                                                                                                                                                                                                                                     (2.074)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code                                                                                                                                                                                                                          0.805          
                                                                                                                                                                                                                                                     (6.549)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code                                                                                                                                                                                                                              0.510          
                                                                                                                                                                                                                                                     (1.431)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code                                                                                                                                                                                                                        -4.463***        
                                                                                                                                                                                                                                                     (1.412)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code                                                                                                                                                                                                                           -0.066          
                                                                                                                                                                                                                                                     (1.917)         
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code                                                                                                                                                                                                                          -3.597***        
                                                                                                                                                                                                                                                     (1.358)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code                                                                                                                                                                                                                      0.214          
                                                                                                                                                                                                                                                     (2.734)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code                                                                                                                                                                                                                           1.326          
                                                                                                                                                                                                                                                     (2.589)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code                                                                                                                                                                                                                       -0.846          
                                                                                                                                                                                                                                                     (1.766)         
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code                                                                                                                                                                                                                            0.425          
                                                                                                                                                                                                                                                     (1.507)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code                                                                                                                                                                                                                         -2.102          
                                                                                                                                                                                                                                                     (4.486)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Critic_Score                                                                                                                                                                                                                  -0.058          
                                                                                                                                                                                                                                                     (0.198)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Critic_Score                                                                                                                                                                                                                          0.195          
                                                                                                                                                                                                                                                     (0.971)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Critic_Score                                                                                                                                                                                                                       -0.021          
                                                                                                                                                                                                                                                     (0.075)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Critic_Score                                                                                                                                                                                                                           0.020          
                                                                                                                                                                                                                                                     (0.071)         
                                                                                                                                                                                                                                                                     
GenreFighting:Critic_Score                                                                                                                                                                                                                            0.021          
                                                                                                                                                                                                                                                     (0.120)         
                                                                                                                                                                                                                                                                     
GenreMisc:Critic_Score                                                                                                                                                                                                                               -0.027          
                                                                                                                                                                                                                                                     (0.052)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Critic_Score                                                                                                                                                                                                                           -0.082          
                                                                                                                                                                                                                                                     (0.050)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Critic_Score                                                                                                                                                                                                                             -0.006          
                                                                                                                                                                                                                                                     (0.060)         
                                                                                                                                                                                                                                                                     
GenreRacing:Critic_Score                                                                                                                                                                                                                             -0.090*         
                                                                                                                                                                                                                                                     (0.049)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Critic_Score                                                                                                                                                                                                                       -0.016          
                                                                                                                                                                                                                                                     (0.107)         
                                                                                                                                                                                                                                                                     
GenreShooter:Critic_Score                                                                                                                                                                                                                             0.021          
                                                                                                                                                                                                                                                     (0.091)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Critic_Score                                                                                                                                                                                                                         -0.011          
                                                                                                                                                                                                                                                     (0.065)         
                                                                                                                                                                                                                                                                     
GenreSports:Critic_Score                                                                                                                                                                                                                             -0.021          
                                                                                                                                                                                                                                                     (0.061)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Critic_Score                                                                                                                                                                                                                           -0.091          
                                                                                                                                                                                                                                                     (0.163)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Critic_Score                                                                                                                                                                                                                           0.018          
                                                                                                                                                                                                                                                     (0.016)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Rating_Code2                                                                                                                                                                                                                  -4.203          
                                                                                                                                                                                                                                                    (14.639)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Rating_Code2                                                                                                                                                                                                                         13.755          
                                                                                                                                                                                                                                                    (74.151)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Rating_Code2                                                                                                                                                                                                                       -2.867          
                                                                                                                                                                                                                                                     (5.848)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Rating_Code3                                                                                                                                                                                                                  -4.903          
                                                                                                                                                                                                                                                    (13.927)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Rating_Code3                                                                                                                                                                                                                         13.443          
                                                                                                                                                                                                                                                    (71.103)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Rating_Code3                                                                                                                                                                                                                       -2.353          
                                                                                                                                                                                                                                                     (5.232)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Rating_Code4                                                                                                                                                                                                                  -2.767          
                                                                                                                                                                                                                                                    (14.195)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Rating_Code4                                                                                                                                                                                                                         13.134          
                                                                                                                                                                                                                                                    (70.724)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Rating_Code4                                                                                                                                                                                                                       -1.516          
                                                                                                                                                                                                                                                     (5.915)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Rating_Code2                                                                                                                                                                                                                           1.571          
                                                                                                                                                                                                                                                     (7.088)         
                                                                                                                                                                                                                                                                     
GenreFighting:Rating_Code2                                                                                                                                                                                                                            2.144          
                                                                                                                                                                                                                                                     (9.344)         
                                                                                                                                                                                                                                                                     
GenreMisc:Rating_Code2                                                                                                                                                                                                                               -0.624          
                                                                                                                                                                                                                                                     (5.900)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Rating_Code2                                                                                                                                                                                                                           -6.007          
                                                                                                                                                                                                                                                     (8.968)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Rating_Code2                                                                                                                                                                                                                              5.488          
                                                                                                                                                                                                                                                    (10.015)         
                                                                                                                                                                                                                                                                     
GenreRacing:Rating_Code2                                                                                                                                                                                                                             -2.995          
                                                                                                                                                                                                                                                    (15.784)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Rating_Code2                                                                                                                                                                                                                        1.016          
                                                                                                                                                                                                                                                     (8.621)         
                                                                                                                                                                                                                                                                     
GenreShooter:Rating_Code2                                                                                                                                                                                                                             2.967          
                                                                                                                                                                                                                                                     (8.879)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Rating_Code2                                                                                                                                                                                                                         -0.051          
                                                                                                                                                                                                                                                    (10.052)         
                                                                                                                                                                                                                                                                     
GenreSports:Rating_Code2                                                                                                                                                                                                                             -0.081          
                                                                                                                                                                                                                                                     (6.759)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Rating_Code2                                                                                                                                                                                                                           -7.266          
                                                                                                                                                                                                                                                    (13.254)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Rating_Code3                                                                                                                                                                                                                           2.289          
                                                                                                                                                                                                                                                     (6.637)         
                                                                                                                                                                                                                                                                     
GenreFighting:Rating_Code3                                                                                                                                                                                                                            5.093          
                                                                                                                                                                                                                                                     (5.884)         
                                                                                                                                                                                                                                                                     
GenreMisc:Rating_Code3                                                                                                                                                                                                                               -0.930          
                                                                                                                                                                                                                                                     (5.717)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Rating_Code3                                                                                                                                                                                                                           -5.028          
                                                                                                                                                                                                                                                     (7.207)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Rating_Code3                                                                                                                                                                                                                             -13.078         
                                                                                                                                                                                                                                                    (26.977)         
                                                                                                                                                                                                                                                                     
GenreRacing:Rating_Code3                                                                                                                                                                                                                             -5.375          
                                                                                                                                                                                                                                                     (7.240)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Rating_Code3                                                                                                                                                                                                                        0.623          
                                                                                                                                                                                                                                                     (8.288)         
                                                                                                                                                                                                                                                                     
GenreShooter:Rating_Code3                                                                                                                                                                                                                             1.237          
                                                                                                                                                                                                                                                     (7.443)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Rating_Code3                                                                                                                                                                                                                         -1.868          
                                                                                                                                                                                                                                                     (7.298)         
                                                                                                                                                                                                                                                                     
GenreSports:Rating_Code3                                                                                                                                                                                                                             -1.564          
                                                                                                                                                                                                                                                    (22.089)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Rating_Code3                                                                                                                                                                                                                           -7.666          
                                                                                                                                                                                                                                                    (14.410)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Rating_Code4                                                                                                                                                                                                                           1.222          
                                                                                                                                                                                                                                                    (17.542)         
                                                                                                                                                                                                                                                                     
GenreFighting:Rating_Code4                                                                                                                                                                                                                           -0.100          
                                                                                                                                                                                                                                                    (11.343)         
                                                                                                                                                                                                                                                                     
GenreMisc:Rating_Code4                                                                                                                                                                                                                                0.534          
                                                                                                                                                                                                                                                    (11.703)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Rating_Code4                                                                                                                                                                                                                           -0.397          
                                                                                                                                                                                                                                                     (1.355)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Rating_Code4                                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreRacing:Rating_Code4                                                                                                                                                                                                                             -2.568          
                                                                                                                                                                                                                                                    (18.200)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Rating_Code4                                                                                                                                                                                                                       -1.228          
                                                                                                                                                                                                                                                    (11.878)         
                                                                                                                                                                                                                                                                     
GenreShooter:Rating_Code4                                                                                                                                                                                                                             0.997          
                                                                                                                                                                                                                                                     (8.193)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Rating_Code4                                                                                                                                                                                                                          6.579          
                                                                                                                                                                                                                                                    (10.646)         
                                                                                                                                                                                                                                                                     
GenreSports:Rating_Code4                                                                                                                                                                                                                              2.704          
                                                                                                                                                                                                                                                    (19.100)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Rating_Code4                                                                                                                                                                                                                           -2.313          
                                                                                                                                                                                                                                                    (53.737)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Rating_Code2                                                                                                                                                                                                                           0.755          
                                                                                                                                                                                                                                                     (1.360)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Rating_Code3                                                                                                                                                                                                                           0.701          
                                                                                                                                                                                                                                                     (1.283)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Rating_Code4                                                                                                                                                                                                                           0.599          
                                                                                                                                                                                                                                                     (1.759)         
                                                                                                                                                                                                                                                                     
Critic_Score:Rating_Code2                                                                                                                                                                                                                             0.027          
                                                                                                                                                                                                                                                     (0.052)         
                                                                                                                                                                                                                                                                     
Critic_Score:Rating_Code3                                                                                                                                                                                                                             0.010          
                                                                                                                                                                                                                                                     (0.050)         
                                                                                                                                                                                                                                                                     
Critic_Score:Rating_Code4                                                                                                                                                                                                                             0.006          
                                                                                                                                                                                                                                                     (0.063)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code                                                                                                                                                                                                  0.925          
                                                                                                                                                                                                                                                     (7.835)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code                                                                                                                                                                                                        -6.413          
                                                                                                                                                                                                                                                    (44.386)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code                                                                                                                                                                                                       0.623          
                                                                                                                                                                                                                                                     (4.018)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code                                                                                                                                                                                                   0.903          
                                                                                                                                                                                                                                                     (7.614)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code                                                                                                                                                                                                         -0.859          
                                                                                                                                                                                                                                                     (2.493)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code                                                                                                                                                                                                        1.418          
                                                                                                                                                                                                                                                     (5.498)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code                                                                                                                                                                                                       5.717          
                                                                                                                                                                                                                                                     (5.454)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code                                                                                                                                                                                                             -25.217         
                                                                                                                                                                                                                                                    (27.733)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code                                                                                                                                                                                                            0.547          
                                                                                                                                                                                                                                                     (2.568)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code                                                                                                                                                                                                   7.097          
                                                                                                                                                                                                                                                     (9.628)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code                                                                                                                                                                                                          3.319          
                                                                                                                                                                                                                                                    (17.359)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code                                                                                                                                                                                                        4.084          
                                                                                                                                                                                                                                                     (2.757)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code                                                                                                                                                                                                    -0.709          
                                                                                                                                                                                                                                                     (1.691)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code                                                                                                                                                                                                         -2.777          
                                                                                                                                                                                                                                                     (8.964)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code                                                                                                                                                                                                     5.391          
                                                                                                                                                                                                                                                     (4.958)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code                                                                                                                                                                                                           -0.877          
                                                                                                                                                                                                                                                    (24.101)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code                                                                                                                                                                                                          2.079          
                                                                                                                                                                                                                                                     (2.242)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code                                                                                                                                                                                              -1.776          
                                                                                                                                                                                                                                                     (8.619)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code                                                                                                                                                                                                     -1.243          
                                                                                                                                                                                                                                                     (8.858)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code                                                                                                                                                                                                    0.022          
                                                                                                                                                                                                                                                     (6.307)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code                                                                                                                                                                                                   -1.721          
                                                                                                                                                                                                                                                     (2.441)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code                                                                                                                                                                                                          -0.033          
                                                                                                                                                                                                                                                     (3.367)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code                                                                                                                                                                                                         1.588          
                                                                                                                                                                                                                                                    (13.699)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code                                                                                                                                                                                                 2.960          
                                                                                                                                                                                                                                                     (6.720)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code                                                                                                                                                                                                       -4.829          
                                                                                                                                                                                                                                                    (24.064)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code                                                                                                                                                                                                      1.545          
                                                                                                                                                                                                                                                     (4.305)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code                                                                                                                                                                                                     1.891          
                                                                                                                                                                                                                                                     (4.991)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code                                                                                                                                                                                                           -3.935          
                                                                                                                                                                                                                                                    (111.528)        
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code                                                                                                                                                                                                         -0.061          
                                                                                                                                                                                                                                                     (2.261)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code                                                                                                                                                                                                   4.363          
                                                                                                                                                                                                                                                    (15.138)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code                                                                                                                                                                                                         -0.070          
                                                                                                                                                                                                                                                    (20.596)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code                                                                                                                                                                                                        3.094          
                                                                                                                                                                                                                                                    (17.124)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Critic_Score                                                                                                                                                                                                   -0.018          
                                                                                                                                                                                                                                                     (0.251)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Critic_Score                                                                                                                                                                                                          -0.297          
                                                                                                                                                                                                                                                     (2.055)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Critic_Score                                                                                                                                                                                                         0.019          
                                                                                                                                                                                                                                                     (0.122)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Critic_Score                                                                                                                                                                                                     0.023          
                                                                                                                                                                                                                                                     (0.158)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Critic_Score                                                                                                                                                                                                           -0.035          
                                                                                                                                                                                                                                                     (0.153)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Critic_Score                                                                                                                                                                                                          0.024          
                                                                                                                                                                                                                                                     (0.198)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Critic_Score                                                                                                                                                                                                         0.160          
                                                                                                                                                                                                                                                     (0.218)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Critic_Score                                                                                                                                                                                                               -0.349          
                                                                                                                                                                                                                                                     (0.513)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Critic_Score                                                                                                                                                                                                              0.047          
                                                                                                                                                                                                                                                     (0.099)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Critic_Score                                                                                                                                                                                                     0.173          
                                                                                                                                                                                                                                                     (0.363)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Critic_Score                                                                                                                                                                                                            0.051          
                                                                                                                                                                                                                                                     (0.718)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Critic_Score                                                                                                                                                                                                          0.075          
                                                                                                                                                                                                                                                     (0.112)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Critic_Score                                                                                                                                                                                                      -0.060          
                                                                                                                                                                                                                                                     (0.076)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Critic_Score                                                                                                                                                                                                             -0.120          
                                                                                                                                                                                                                                                     (0.672)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Critic_Score                                                                                                                                                                                                           -0.126          
                                                                                                                                                                                                                                                     (0.259)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Critic_Score                                                                                                                                                                                                       0.146          
                                                                                                                                                                                                                                                     (0.202)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Critic_Score                                                                                                                                                                                                             -0.087          
                                                                                                                                                                                                                                                     (0.976)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Critic_Score                                                                                                                                                                                                            0.082          
                                                                                                                                                                                                                                                     (0.086)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Critic_Score                                                                                                                                                                                                -0.071          
                                                                                                                                                                                                                                                     (0.180)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Critic_Score                                                                                                                                                                                                       -0.035          
                                                                                                                                                                                                                                                     (0.183)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Critic_Score                                                                                                                                                                                                      0.003          
                                                                                                                                                                                                                                                     (0.256)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Critic_Score                                                                                                                                                                                                     -0.055          
                                                                                                                                                                                                                                                     (0.092)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Critic_Score                                                                                                                                                                                                             0.004          
                                                                                                                                                                                                                                                     (0.121)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Critic_Score                                                                                                                                                                                                           0.034          
                                                                                                                                                                                                                                                     (0.292)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Critic_Score                                                                                                                                                                                                   0.062          
                                                                                                                                                                                                                                                     (0.278)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Critic_Score                                                                                                                                                                                                         -0.194          
                                                                                                                                                                                                                                                     (0.981)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Critic_Score                                                                                                                                                                                                        0.058          
                                                                                                                                                                                                                                                     (0.116)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Critic_Score                                                                                                                                                                                                       0.083          
                                                                                                                                                                                                                                                     (0.207)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Critic_Score                                                                                                                                                                                                             -0.101          
                                                                                                                                                                                                                                                     (3.886)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Critic_Score                                                                                                                                                                                                            0.043          
                                                                                                                                                                                                                                                     (0.092)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Critic_Score                                                                                                                                                                                                     0.129          
                                                                                                                                                                                                                                                     (0.602)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Critic_Score                                                                                                                                                                                                           -0.055          
                                                                                                                                                                                                                                                     (0.903)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Critic_Score                                                                                                                                                                                                          0.106          
                                                                                                                                                                                                                                                     (0.700)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Critic_Score                                                                                                                                                                                                    0.025          
                                                                                                                                                                                                                                                     (0.069)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Critic_Score                                                                                                                                                                                                          -0.079          
                                                                                                                                                                                                                                                     (0.323)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Critic_Score                                                                                                                                                                                                         0.011          
                                                                                                                                                                                                                                                     (0.029)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Critic_Score                                                                                                                                                                                                           -0.017          
                                                                                                                                                                                                                                                     (0.032)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Critic_Score                                                                                                                                                                                                            -0.017          
                                                                                                                                                                                                                                                     (0.058)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Critic_Score                                                                                                                                                                                                                 0.009          
                                                                                                                                                                                                                                                     (0.022)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Critic_Score                                                                                                                                                                                                           0.068***         
                                                                                                                                                                                                                                                     (0.021)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Critic_Score                                                                                                                                                                                                               0.003          
                                                                                                                                                                                                                                                     (0.027)         
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Critic_Score                                                                                                                                                                                                             0.070***         
                                                                                                                                                                                                                                                     (0.021)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Critic_Score                                                                                                                                                                                                         0.001          
                                                                                                                                                                                                                                                     (0.039)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Critic_Score                                                                                                                                                                                                             -0.022          
                                                                                                                                                                                                                                                     (0.038)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Critic_Score                                                                                                                                                                                                           0.017          
                                                                                                                                                                                                                                                     (0.027)         
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Critic_Score                                                                                                                                                                                                               0.001          
                                                                                                                                                                                                                                                     (0.023)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Critic_Score                                                                                                                                                                                                             0.025          
                                                                                                                                                                                                                                                     (0.061)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Rating_Code2                                                                                                                                                                                                    5.106          
                                                                                                                                                                                                                                                    (33.383)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Rating_Code2                                                                                                                                                                                                          -14.941         
                                                                                                                                                                                                                                                    (101.322)        
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Rating_Code2                                                                                                                                                                                                         0.721          
                                                                                                                                                                                                                                                    (35.091)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Rating_Code2                                                                                                                                                                                                    -0.222          
                                                                                                                                                                                                                                                     (5.421)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Rating_Code2                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Rating_Code2                                                                                                                                                                                                          1.110          
                                                                                                                                                                                                                                                    (10.318)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Rating_Code2                                                                                                                                                                                                         9.735          
                                                                                                                                                                                                                                                    (25.737)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Rating_Code2                                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Rating_Code2                                                                                                                                                                                                              4.642          
                                                                                                                                                                                                                                                    (71.602)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Rating_Code2                                                                                                                                                                                                    11.301          
                                                                                                                                                                                                                                                    (29.119)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Rating_Code2                                                                                                                                                                                                           -2.673          
                                                                                                                                                                                                                                                    (25.773)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Rating_Code2                                                                                                                                                                                                          7.284          
                                                                                                                                                                                                                                                    (12.097)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Rating_Code2                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Rating_Code2                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Rating_Code2                                                                                                                                                                                                           -13.946         
                                                                                                                                                                                                                                                    (23.232)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Rating_Code2                                                                                                                                                                                                       8.318          
                                                                                                                                                                                                                                                    (22.420)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Rating_Code2                                                                                                                                                                                                             -5.063          
                                                                                                                                                                                                                                                    (83.984)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Rating_Code2                                                                                                                                                                                                            5.930          
                                                                                                                                                                                                                                                    (19.284)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Rating_Code2                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Rating_Code2                                                                                                                                                                                                        0.954          
                                                                                                                                                                                                                                                     (5.431)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Rating_Code2                                                                                                                                                                                                      2.496          
                                                                                                                                                                                                                                                    (18.660)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Rating_Code2                                                                                                                                                                                                     -9.358          
                                                                                                                                                                                                                                                    (12.624)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Rating_Code2                                                                                                                                                                                                             4.368          
                                                                                                                                                                                                                                                    (67.733)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Rating_Code2                                                                                                                                                                                                          -2.699          
                                                                                                                                                                                                                                                    (26.873)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Rating_Code2                                                                                                                                                                                                  -4.431          
                                                                                                                                                                                                                                                    (16.615)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Rating_Code2                                                                                                                                                                                                         -9.342          
                                                                                                                                                                                                                                                    (91.332)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Rating_Code2                                                                                                                                                                                                        0.496          
                                                                                                                                                                                                                                                    (11.497)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Rating_Code2                                                                                                                                                                                                       5.966          
                                                                                                                                                                                                                                                    (16.886)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Rating_Code2                                                                                                                                                                                                              0.813          
                                                                                                                                                                                                                                                     (2.485)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Rating_Code2                                                                                                                                                                                                            7.430          
                                                                                                                                                                                                                                                    (23.598)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Rating_Code2                                                                                                                                                                                                    13.013          
                                                                                                                                                                                                                                                    (55.585)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Rating_Code2                                                                                                                                                                                                           -1.528          
                                                                                                                                                                                                                                                    (69.887)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Rating_Code2                                                                                                                                                                                                          7.726          
                                                                                                                                                                                                                                                    (53.222)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Rating_Code3                                                                                                                                                                                                    2.854          
                                                                                                                                                                                                                                                    (19.587)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Rating_Code3                                                                                                                                                                                                          -21.123         
                                                                                                                                                                                                                                                    (141.664)        
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Rating_Code3                                                                                                                                                                                                         1.795          
                                                                                                                                                                                                                                                    (10.470)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Rating_Code3                                                                                                                                                                                                    -1.749          
                                                                                                                                                                                                                                                    (15.045)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Rating_Code3                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Rating_Code3                                                                                                                                                                                                          0.407          
                                                                                                                                                                                                                                                     (6.325)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Rating_Code3                                                                                                                                                                                                        11.393          
                                                                                                                                                                                                                                                    (16.078)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Rating_Code3                                                                                                                                                                                                               -11.114         
                                                                                                                                                                                                                                                    (14.474)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Rating_Code3                                                                                                                                                                                                              0.428          
                                                                                                                                                                                                                                                     (8.387)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Rating_Code3                                                                                                                                                                                                    11.802          
                                                                                                                                                                                                                                                    (27.270)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Rating_Code3                                                                                                                                                                                                           -9.900          
                                                                                                                                                                                                                                                    (19.480)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Rating_Code3                                                                                                                                                                                                          3.411          
                                                                                                                                                                                                                                                    (11.698)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Rating_Code3                                                                                                                                                                                                       5.446          
                                                                                                                                                                                                                                                    (14.925)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Rating_Code3                                                                                                                                                                                                             -0.791          
                                                                                                                                                                                                                                                    (12.275)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Rating_Code3                                                                                                                                                                                                            2.384          
                                                                                                                                                                                                                                                     (6.676)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Rating_Code3                                                                                                                                                                                                      10.023          
                                                                                                                                                                                                                                                    (16.013)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Rating_Code3                                                                                                                                                                                                             -6.456          
                                                                                                                                                                                                                                                    (74.122)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Rating_Code3                                                                                                                                                                                                            7.018          
                                                                                                                                                                                                                                                     (9.154)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Rating_Code3                                                                                                                                                                                                -2.422          
                                                                                                                                                                                                                                                    (15.353)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Rating_Code3                                                                                                                                                                                                        2.467          
                                                                                                                                                                                                                                                    (16.324)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Rating_Code3                                                                                                                                                                                                      3.369          
                                                                                                                                                                                                                                                    (17.705)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Rating_Code3                                                                                                                                                                                                     -2.058          
                                                                                                                                                                                                                                                     (8.064)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Rating_Code3                                                                                                                                                                                                             0.459          
                                                                                                                                                                                                                                                    (11.891)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Rating_Code3                                                                                                                                                                                                           4.777          
                                                                                                                                                                                                                                                    (21.824)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Rating_Code3                                                                                                                                                                                                   5.590          
                                                                                                                                                                                                                                                    (18.336)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Rating_Code3                                                                                                                                                                                                         -12.362         
                                                                                                                                                                                                                                                    (72.127)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Rating_Code3                                                                                                                                                                                                        4.125          
                                                                                                                                                                                                                                                    (11.182)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Rating_Code3                                                                                                                                                                                                       6.653          
                                                                                                                                                                                                                                                    (27.338)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Rating_Code3                                                                                                                                                                                                             -0.850          
                                                                                                                                                                                                                                                    (36.045)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Rating_Code3                                                                                                                                                                                                            5.948          
                                                                                                                                                                                                                                                    (22.949)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Rating_Code3                                                                                                                                                                                                    12.030          
                                                                                                                                                                                                                                                    (45.751)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Rating_Code3                                                                                                                                                                                                           -1.052          
                                                                                                                                                                                                                                                    (66.652)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Rating_Code3                                                                                                                                                                                                          8.946          
                                                                                                                                                                                                                                                    (51.591)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Rating_Code4                                                                                                                                                                                                    1.475          
                                                                                                                                                                                                                                                    (14.891)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Rating_Code4                                                                                                                                                                                                          -20.355         
                                                                                                                                                                                                                                                    (142.080)        
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Rating_Code4                                                                                                                                                                                                         2.110          
                                                                                                                                                                                                                                                    (19.064)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Rating_Code4                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Rating_Code4                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Rating_Code4                                                                                                                                                                                                          1.043          
                                                                                                                                                                                                                                                    (12.271)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Rating_Code4                                                                                                                                                                                                         8.626          
                                                                                                                                                                                                                                                    (22.725)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Rating_Code4                                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Rating_Code4                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Rating_Code4                                                                                                                                                                                                    -0.108          
                                                                                                                                                                                                                                                     (2.371)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Rating_Code4                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Rating_Code4                                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Rating_Code4                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Rating_Code4                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Rating_Code4                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Rating_Code4                                                                                                                                                                                                       2.868          
                                                                                                                                                                                                                                                    (31.796)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Rating_Code4                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Rating_Code4                                                                                                                                                                                                            2.072          
                                                                                                                                                                                                                                                    (13.464)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Rating_Code4                                                                                                                                                                                                -0.102          
                                                                                                                                                                                                                                                     (5.348)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Rating_Code4                                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Rating_Code4                                                                                                                                                                                                      2.448          
                                                                                                                                                                                                                                                    (13.005)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Rating_Code4                                                                                                                                                                                                     -0.521          
                                                                                                                                                                                                                                                     (2.209)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Rating_Code4                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Rating_Code4                                                                                                                                                                                                           5.132          
                                                                                                                                                                                                                                                    (22.094)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Rating_Code4                                                                                                                                                                                                  -8.211          
                                                                                                                                                                                                                                                    (18.950)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Rating_Code4                                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Rating_Code4                                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Rating_Code4                                                                                                                                                                                                       0.447          
                                                                                                                                                                                                                                                     (6.373)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Rating_Code4                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Rating_Code4                                                                                                                                                                                                           -0.246          
                                                                                                                                                                                                                                                     (3.042)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Rating_Code4                                                                                                                                                                                                     1.311          
                                                                                                                                                                                                                                                    (71.539)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Rating_Code4                                                                                                                                                                                                           -6.235          
                                                                                                                                                                                                                                                    (26.275)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Rating_Code4                                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Rating_Code2                                                                                                                                                                                                    1.809          
                                                                                                                                                                                                                                                     (5.304)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Rating_Code2                                                                                                                                                                                                          -4.937          
                                                                                                                                                                                                                                                    (24.887)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Rating_Code2                                                                                                                                                                                                         1.411          
                                                                                                                                                                                                                                                     (2.384)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Rating_Code3                                                                                                                                                                                                    2.240          
                                                                                                                                                                                                                                                     (4.889)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Rating_Code3                                                                                                                                                                                                          -5.065          
                                                                                                                                                                                                                                                    (23.691)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Rating_Code3                                                                                                                                                                                                         0.695          
                                                                                                                                                                                                                                                     (2.099)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Rating_Code4                                                                                                                                                                                                    0.503          
                                                                                                                                                                                                                                                     (5.038)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Rating_Code4                                                                                                                                                                                                          -5.096          
                                                                                                                                                                                                                                                    (23.546)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Rating_Code4                                                                                                                                                                                                        -1.126          
                                                                                                                                                                                                                                                     (2.434)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Rating_Code2                                                                                                                                                                                                           -0.799          
                                                                                                                                                                                                                                                     (3.657)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Rating_Code2                                                                                                                                                                                                            -0.717          
                                                                                                                                                                                                                                                     (7.203)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Rating_Code2                                                                                                                                                                                                                -0.007          
                                                                                                                                                                                                                                                     (2.431)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Rating_Code2                                                                                                                                                                                                             5.165          
                                                                                                                                                                                                                                                     (3.408)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Rating_Code2                                                                                                                                                                                                              -5.110          
                                                                                                                                                                                                                                                     (7.326)         
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Rating_Code2                                                                                                                                                                                                               3.430          
                                                                                                                                                                                                                                                     (5.542)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Rating_Code2                                                                                                                                                                                                        -1.042          
                                                                                                                                                                                                                                                     (3.346)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Rating_Code2                                                                                                                                                                                                             -1.804          
                                                                                                                                                                                                                                                     (3.734)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Rating_Code2                                                                                                                                                                                                           0.933          
                                                                                                                                                                                                                                                     (4.401)         
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Rating_Code2                                                                                                                                                                                                              -0.398          
                                                                                                                                                                                                                                                     (3.111)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Rating_Code2                                                                                                                                                                                                             2.501          
                                                                                                                                                                                                                                                     (5.083)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Rating_Code3                                                                                                                                                                                                           -1.564          
                                                                                                                                                                                                                                                     (3.063)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Rating_Code3                                                                                                                                                                                                            -3.333          
                                                                                                                                                                                                                                                     (6.117)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Rating_Code3                                                                                                                                                                                                                -0.849          
                                                                                                                                                                                                                                                     (2.707)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Rating_Code3                                                                                                                                                                                                             4.476          
                                                                                                                                                                                                                                                     (2.996)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Rating_Code3                                                                                                                                                                                                              -0.124          
                                                                                                                                                                                                                                                     (1.179)         
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Rating_Code3                                                                                                                                                                                                               4.015          
                                                                                                                                                                                                                                                     (2.818)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Rating_Code3                                                                                                                                                                                                        -1.084          
                                                                                                                                                                                                                                                     (3.196)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Rating_Code3                                                                                                                                                                                                             -1.246          
                                                                                                                                                                                                                                                     (3.049)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Rating_Code3                                                                                                                                                                                                           1.477          
                                                                                                                                                                                                                                                     (3.117)         
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Rating_Code3                                                                                                                                                                                                              -0.102          
                                                                                                                                                                                                                                                     (7.718)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Rating_Code3                                                                                                                                                                                                             2.559          
                                                                                                                                                                                                                                                     (6.550)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Rating_Code4                                                                                                                                                                                                           -0.819          
                                                                                                                                                                                                                                                     (8.244)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Rating_Code4                                                                                                                                                                                                            -0.075          
                                                                                                                                                                                                                                                     (2.645)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Rating_Code4                                                                                                                                                                                                                 1.502          
                                                                                                                                                                                                                                                     (4.739)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Rating_Code4                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Rating_Code4                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Rating_Code4                                                                                                                                                                                                               3.231          
                                                                                                                                                                                                                                                     (4.285)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Rating_Code4                                                                                                                                                                                                        -0.412          
                                                                                                                                                                                                                                                     (7.661)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Rating_Code4                                                                                                                                                                                                             -1.096          
                                                                                                                                                                                                                                                     (3.394)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Rating_Code4                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Rating_Code4                                                                                                                                                                                                              -0.552          
                                                                                                                                                                                                                                                    (10.181)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Rating_Code4                                                                                                                                                                                                             1.903          
                                                                                                                                                                                                                                                    (18.212)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Critic_Score:Rating_Code2                                                                                                                                                                                                      0.068          
                                                                                                                                                                                                                                                     (0.213)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Critic_Score:Rating_Code2                                                                                                                                                                                                            -0.193          
                                                                                                                                                                                                                                                     (1.013)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Critic_Score:Rating_Code2                                                                                                                                                                                                           0.048          
                                                                                                                                                                                                                                                     (0.093)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Critic_Score:Rating_Code3                                                                                                                                                                                                      0.080          
                                                                                                                                                                                                                                                     (0.202)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Critic_Score:Rating_Code3                                                                                                                                                                                                            -0.179          
                                                                                                                                                                                                                                                     (0.974)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Critic_Score:Rating_Code3                                                                                                                                                                                                           0.046          
                                                                                                                                                                                                                                                     (0.084)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Critic_Score:Rating_Code4                                                                                                                                                                                                      0.046          
                                                                                                                                                                                                                                                     (0.206)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Critic_Score:Rating_Code4                                                                                                                                                                                                            -0.177          
                                                                                                                                                                                                                                                     (0.969)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Critic_Score:Rating_Code4                                                                                                                                                                                                           0.035          
                                                                                                                                                                                                                                                     (0.094)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Critic_Score:Rating_Code2                                                                                                                                                                                                             -0.024          
                                                                                                                                                                                                                                                     (0.120)         
                                                                                                                                                                                                                                                                     
GenreFighting:Critic_Score:Rating_Code2                                                                                                                                                                                                              -0.053          
                                                                                                                                                                                                                                                     (0.189)         
                                                                                                                                                                                                                                                                     
GenreMisc:Critic_Score:Rating_Code2                                                                                                                                                                                                                   0.010          
                                                                                                                                                                                                                                                     (0.094)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Critic_Score:Rating_Code2                                                                                                                                                                                                               0.081          
                                                                                                                                                                                                                                                     (0.132)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Critic_Score:Rating_Code2                                                                                                                                                                                                                -0.079          
                                                                                                                                                                                                                                                     (0.135)         
                                                                                                                                                                                                                                                                     
GenreRacing:Critic_Score:Rating_Code2                                                                                                                                                                                                                 0.058          
                                                                                                                                                                                                                                                     (0.266)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Critic_Score:Rating_Code2                                                                                                                                                                                                          -0.015          
                                                                                                                                                                                                                                                     (0.125)         
                                                                                                                                                                                                                                                                     
GenreShooter:Critic_Score:Rating_Code2                                                                                                                                                                                                               -0.054          
                                                                                                                                                                                                                                                     (0.133)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Critic_Score:Rating_Code2                                                                                                                                                                                                            -0.009          
                                                                                                                                                                                                                                                     (0.161)         
                                                                                                                                                                                                                                                                     
GenreSports:Critic_Score:Rating_Code2                                                                                                                                                                                                                 0.009          
                                                                                                                                                                                                                                                     (0.143)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Critic_Score:Rating_Code2                                                                                                                                                                                                               0.087          
                                                                                                                                                                                                                                                     (0.186)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Critic_Score:Rating_Code3                                                                                                                                                                                                             -0.033          
                                                                                                                                                                                                                                                     (0.109)         
                                                                                                                                                                                                                                                                     
GenreFighting:Critic_Score:Rating_Code3                                                                                                                                                                                                              -0.083          
                                                                                                                                                                                                                                                     (0.130)         
                                                                                                                                                                                                                                                                     
GenreMisc:Critic_Score:Rating_Code3                                                                                                                                                                                                                   0.041          
                                                                                                                                                                                                                                                     (0.083)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Critic_Score:Rating_Code3                                                                                                                                                                                                               0.076          
                                                                                                                                                                                                                                                     (0.115)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Critic_Score:Rating_Code3                                                                                                                                                                                                                 0.175          
                                                                                                                                                                                                                                                     (0.342)         
                                                                                                                                                                                                                                                                     
GenreRacing:Critic_Score:Rating_Code3                                                                                                                                                                                                                 0.102          
                                                                                                                                                                                                                                                     (0.112)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Critic_Score:Rating_Code3                                                                                                                                                                                                          -0.002          
                                                                                                                                                                                                                                                     (0.120)         
                                                                                                                                                                                                                                                                     
GenreShooter:Critic_Score:Rating_Code3                                                                                                                                                                                                               -0.018          
                                                                                                                                                                                                                                                     (0.108)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Critic_Score:Rating_Code3                                                                                                                                                                                                             0.030          
                                                                                                                                                                                                                                                     (0.110)         
                                                                                                                                                                                                                                                                     
GenreSports:Critic_Score:Rating_Code3                                                                                                                                                                                                                 0.032          
                                                                                                                                                                                                                                                     (0.277)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Critic_Score:Rating_Code3                                                                                                                                                                                                               0.101          
                                                                                                                                                                                                                                                     (0.202)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Critic_Score:Rating_Code4                                                                                                                                                                                                             -0.017          
                                                                                                                                                                                                                                                     (0.221)         
                                                                                                                                                                                                                                                                     
GenreFighting:Critic_Score:Rating_Code4                                                                                                                                                                                                               0.009          
                                                                                                                                                                                                                                                     (0.154)         
                                                                                                                                                                                                                                                                     
GenreMisc:Critic_Score:Rating_Code4                                                                                                                                                                                                                  -0.011          
                                                                                                                                                                                                                                                     (0.202)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Critic_Score:Rating_Code4                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenrePuzzle:Critic_Score:Rating_Code4                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreRacing:Critic_Score:Rating_Code4                                                                                                                                                                                                                -0.012          
                                                                                                                                                                                                                                                     (0.326)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Critic_Score:Rating_Code4                                                                                                                                                                                                           0.026          
                                                                                                                                                                                                                                                     (0.163)         
                                                                                                                                                                                                                                                                     
GenreShooter:Critic_Score:Rating_Code4                                                                                                                                                                                                               -0.012          
                                                                                                                                                                                                                                                     (0.123)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Critic_Score:Rating_Code4                                                                                                                                                                                                            -0.097          
                                                                                                                                                                                                                                                     (0.146)         
                                                                                                                                                                                                                                                                     
GenreSports:Critic_Score:Rating_Code4                                                                                                                                                                                                                -0.051          
                                                                                                                                                                                                                                                     (0.334)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Critic_Score:Rating_Code4                                                                                                                                                                                                               0.016          
                                                                                                                                                                                                                                                     (0.768)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                             -0.013          
                                                                                                                                                                                                                                                     (0.021)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                             -0.011          
                                                                                                                                                                                                                                                     (0.020)         
                                                                                                                                                                                                                                                                     
Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                             -0.010          
                                                                                                                                                                                                                                                     (0.026)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Critic_Score                                                                                                                                                                                    -0.0005         
                                                                                                                                                                                                                                                     (0.102)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Critic_Score                                                                                                                                                                                            0.093          
                                                                                                                                                                                                                                                     (0.644)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Critic_Score                                                                                                                                                                                         -0.013          
                                                                                                                                                                                                                                                     (0.061)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Critic_Score                                                                                                                                                                                     -0.014          
                                                                                                                                                                                                                                                     (0.075)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Critic_Score                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Critic_Score                                                                                                                                                                                          -0.021          
                                                                                                                                                                                                                                                     (0.032)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Critic_Score                                                                                                                                                                                         -0.091          
                                                                                                                                                                                                                                                     (0.081)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Critic_Score                                                                                                                                                                                                 0.327          
                                                                                                                                                                                                                                                     (0.350)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Critic_Score                                                                                                                                                                                              -0.027          
                                                                                                                                                                                                                                                     (0.040)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Critic_Score                                                                                                                                                                                     -0.112          
                                                                                                                                                                                                                                                     (0.141)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Critic_Score                                                                                                                                                                                            -0.061          
                                                                                                                                                                                                                                                     (0.255)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Critic_Score                                                                                                                                                                                          -0.068          
                                                                                                                                                                                                                                                     (0.042)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Critic_Score                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Critic_Score                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Critic_Score                                                                                                                                                                                             0.027          
                                                                                                                                                                                                                                                     (0.117)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Critic_Score                                                                                                                                                                                       -0.094          
                                                                                                                                                                                                                                                     (0.071)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Critic_Score                                                                                                                                                                                              -0.008          
                                                                                                                                                                                                                                                     (0.330)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Critic_Score                                                                                                                                                                                            -0.049          
                                                                                                                                                                                                                                                     (0.034)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Critic_Score                                                                                                                                                                                  0.029          
                                                                                                                                                                                                                                                     (0.102)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Critic_Score                                                                                                                                                                                         0.018          
                                                                                                                                                                                                                                                     (0.104)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Critic_Score                                                                                                                                                                                      -0.001          
                                                                                                                                                                                                                                                     (0.093)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Critic_Score                                                                                                                                                                                       0.031          
                                                                                                                                                                                                                                                     (0.037)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Critic_Score                                                                                                                                                                                            -0.00004         
                                                                                                                                                                                                                                                     (0.047)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Critic_Score                                                                                                                                                                                           -0.024          
                                                                                                                                                                                                                                                     (0.177)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Critic_Score                                                                                                                                                                                   -0.047          
                                                                                                                                                                                                                                                     (0.103)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Critic_Score                                                                                                                                                                                           0.059          
                                                                                                                                                                                                                                                     (0.329)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Critic_Score                                                                                                                                                                                        -0.034          
                                                                                                                                                                                                                                                     (0.061)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Critic_Score                                                                                                                                                                                       -0.036          
                                                                                                                                                                                                                                                     (0.072)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Critic_Score                                                                                                                                                                                               0.044          
                                                                                                                                                                                                                                                     (1.296)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Critic_Score                                                                                                                                                                                            -0.010          
                                                                                                                                                                                                                                                     (0.035)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Critic_Score                                                                                                                                                                                     -0.062          
                                                                                                                                                                                                                                                     (0.227)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Critic_Score                                                                                                                                                                                             0.008          
                                                                                                                                                                                                                                                     (0.281)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Critic_Score                                                                                                                                                                                          -0.046          
                                                                                                                                                                                                                                                     (0.238)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Rating_Code2                                                                                                                                                                                    -2.148          
                                                                                                                                                                                                                                                    (14.381)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Rating_Code2                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Rating_Code2                                                                                                                                                                                         -0.899          
                                                                                                                                                                                                                                                    (12.603)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Rating_Code2                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Rating_Code2                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Rating_Code2                                                                                                                                                                                          -0.733          
                                                                                                                                                                                                                                                     (5.514)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Rating_Code2                                                                                                                                                                                         -5.512          
                                                                                                                                                                                                                                                     (9.205)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Rating_Code2                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Rating_Code2                                                                                                                                                                                              -1.827          
                                                                                                                                                                                                                                                    (23.947)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Rating_Code2                                                                                                                                                                                     -7.207          
                                                                                                                                                                                                                                                    (11.211)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Rating_Code2                                                                                                                                                                                             1.945          
                                                                                                                                                                                                                                                     (8.656)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Rating_Code2                                                                                                                                                                                          -5.632          
                                                                                                                                                                                                                                                     (4.609)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Rating_Code2                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Rating_Code2                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Rating_Code2                                                                                                                                                                                             7.439          
                                                                                                                                                                                                                                                    (13.232)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Rating_Code2                                                                                                                                                                                       -5.243          
                                                                                                                                                                                                                                                     (8.305)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Rating_Code2                                                                                                                                                                                              -0.863          
                                                                                                                                                                                                                                                    (29.264)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Rating_Code2                                                                                                                                                                                            -3.074          
                                                                                                                                                                                                                                                     (6.876)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Rating_Code2                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Rating_Code2                                                                                                                                                                                        -0.277          
                                                                                                                                                                                                                                                     (3.059)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Rating_Code2                                                                                                                                                                                      -1.035          
                                                                                                                                                                                                                                                     (7.050)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Rating_Code2                                                                                                                                                                                       4.374          
                                                                                                                                                                                                                                                     (5.290)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Rating_Code2                                                                                                                                                                                             -1.027          
                                                                                                                                                                                                                                                     (5.837)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Rating_Code2                                                                                                                                                                                            0.264          
                                                                                                                                                                                                                                                    (15.113)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Rating_Code2                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Rating_Code2                                                                                                                                                                                           1.144          
                                                                                                                                                                                                                                                    (34.090)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Rating_Code2                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Rating_Code2                                                                                                                                                                                       -1.823          
                                                                                                                                                                                                                                                     (6.453)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Rating_Code2                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Rating_Code2                                                                                                                                                                                            -2.173          
                                                                                                                                                                                                                                                     (8.447)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Rating_Code2                                                                                                                                                                                     -6.533          
                                                                                                                                                                                                                                                    (22.693)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Rating_Code2                                                                                                                                                                                            -1.305          
                                                                                                                                                                                                                                                    (22.381)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Rating_Code2                                                                                                                                                                                          -3.293          
                                                                                                                                                                                                                                                    (18.198)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Rating_Code3                                                                                                                                                                                    -1.192          
                                                                                                                                                                                                                                                     (9.623)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Rating_Code3                                                                                                                                                                                            6.597          
                                                                                                                                                                                                                                                    (44.660)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Rating_Code3                                                                                                                                                                                         -0.195          
                                                                                                                                                                                                                                                     (5.207)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Rating_Code3                                                                                                                                                                                      1.309          
                                                                                                                                                                                                                                                     (7.370)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Rating_Code3                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Rating_Code3                                                                                                                                                                                          -0.078          
                                                                                                                                                                                                                                                     (4.704)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Rating_Code3                                                                                                                                                                                         -6.138          
                                                                                                                                                                                                                                                     (6.203)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Rating_Code3                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Rating_Code3                                                                                                                                                                                               0.614          
                                                                                                                                                                                                                                                     (3.763)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Rating_Code3                                                                                                                                                                                     -7.693          
                                                                                                                                                                                                                                                    (11.166)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Rating_Code3                                                                                                                                                                                             0.485          
                                                                                                                                                                                                                                                     (6.625)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Rating_Code3                                                                                                                                                                                          -3.796          
                                                                                                                                                                                                                                                     (4.626)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Rating_Code3                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Rating_Code3                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Rating_Code3                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Rating_Code3                                                                                                                                                                                       -6.309          
                                                                                                                                                                                                                                                     (5.828)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Rating_Code3                                                                                                                                                                                              -0.245          
                                                                                                                                                                                                                                                    (25.560)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Rating_Code3                                                                                                                                                                                            -4.148          
                                                                                                                                                                                                                                                     (3.674)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Rating_Code3                                                                                                                                                                                  0.690          
                                                                                                                                                                                                                                                     (9.067)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Rating_Code3                                                                                                                                                                                        -2.190          
                                                                                                                                                                                                                                                     (9.664)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Rating_Code3                                                                                                                                                                                      -1.407          
                                                                                                                                                                                                                                                     (6.621)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Rating_Code3                                                                                                                                                                                       1.049          
                                                                                                                                                                                                                                                     (3.217)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Rating_Code3                                                                                                                                                                                             -0.086          
                                                                                                                                                                                                                                                     (4.868)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Rating_Code3                                                                                                                                                                                           -2.841          
                                                                                                                                                                                                                                                    (13.838)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Rating_Code3                                                                                                                                                                                   -3.589          
                                                                                                                                                                                                                                                     (7.617)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Rating_Code3                                                                                                                                                                                           3.552          
                                                                                                                                                                                                                                                    (24.357)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Rating_Code3                                                                                                                                                                                        -1.951          
                                                                                                                                                                                                                                                     (5.501)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Rating_Code3                                                                                                                                                                                       -2.519          
                                                                                                                                                                                                                                                     (9.528)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Rating_Code3                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Rating_Code3                                                                                                                                                                                            -1.624          
                                                                                                                                                                                                                                                     (8.084)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Rating_Code3                                                                                                                                                                                     -6.059          
                                                                                                                                                                                                                                                    (16.334)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Rating_Code3                                                                                                                                                                                            -1.651          
                                                                                                                                                                                                                                                    (21.307)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Rating_Code3                                                                                                                                                                                          -3.055          
                                                                                                                                                                                                                                                    (18.009)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Rating_Code4                                                                                                                                                                                    -0.597          
                                                                                                                                                                                                                                                     (4.005)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Rating_Code4                                                                                                                                                                                            6.181          
                                                                                                                                                                                                                                                    (45.110)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Rating_Code4                                                                                                                                                                                          0.179          
                                                                                                                                                                                                                                                     (9.081)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Rating_Code4                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Rating_Code4                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Rating_Code4                                                                                                                                                                                         -6.607          
                                                                                                                                                                                                                                                     (8.540)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Rating_Code4                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Rating_Code4                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Rating_Code4                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Rating_Code4                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Rating_Code4                                                                                                                                                                                       -2.381          
                                                                                                                                                                                                                                                    (12.423)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Rating_Code4                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Rating_Code4                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Rating_Code4                                                                                                                                                                                       0.285          
                                                                                                                                                                                                                                                     (2.902)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Rating_Code4                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Rating_Code4                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Rating_Code4                                                                                                                                                                                           -1.853          
                                                                                                                                                                                                                                                    (13.913)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Rating_Code4                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Rating_Code4                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Rating_Code4                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Rating_Code4                                                                                                                                                                                       -0.456          
                                                                                                                                                                                                                                                     (4.352)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Rating_Code4                                                                                                                                                                                     -1.916          
                                                                                                                                                                                                                                                    (24.436)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Rating_Code4                                                                                                                                                                                            -0.276          
                                                                                                                                                                                                                                                     (2.788)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Rating_Code4                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Critic_Score:Rating_Code2                                                                                                                                                                                      -0.044          
                                                                                                                                                                                                                                                     (0.569)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Critic_Score:Rating_Code2                                                                                                                                                                                              0.212          
                                                                                                                                                                                                                                                     (1.465)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Critic_Score:Rating_Code2                                                                                                                                                                                           -0.011          
                                                                                                                                                                                                                                                     (0.564)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Critic_Score:Rating_Code2                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Critic_Score:Rating_Code2                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Critic_Score:Rating_Code2                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Critic_Score:Rating_Code2                                                                                                                                                                                           -0.152          
                                                                                                                                                                                                                                                     (0.354)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Critic_Score:Rating_Code2                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Critic_Score:Rating_Code2                                                                                                                                                                                                -0.081          
                                                                                                                                                                                                                                                     (0.891)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Critic_Score:Rating_Code2                                                                                                                                                                                       -0.181          
                                                                                                                                                                                                                                                     (0.443)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Critic_Score:Rating_Code2                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Critic_Score:Rating_Code2                                                                                                                                                                                            -0.117          
                                                                                                                                                                                                                                                     (0.184)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Critic_Score:Rating_Code2                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Critic_Score:Rating_Code2                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Critic_Score:Rating_Code2                                                                                                                                                                                               0.167          
                                                                                                                                                                                                                                                     (0.309)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Critic_Score:Rating_Code2                                                                                                                                                                                         -0.146          
                                                                                                                                                                                                                                                     (0.351)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Critic_Score:Rating_Code2                                                                                                                                                                                                 0.059          
                                                                                                                                                                                                                                                     (1.140)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Critic_Score:Rating_Code2                                                                                                                                                                                              -0.119          
                                                                                                                                                                                                                                                     (0.312)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Critic_Score:Rating_Code2                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Critic_Score:Rating_Code2                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Critic_Score:Rating_Code2                                                                                                                                                                                        -0.043          
                                                                                                                                                                                                                                                     (0.279)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Critic_Score:Rating_Code2                                                                                                                                                                                         0.146          
                                                                                                                                                                                                                                                     (0.183)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Critic_Score:Rating_Code2                                                                                                                                                                                               -0.022          
                                                                                                                                                                                                                                                     (0.653)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Critic_Score:Rating_Code2                                                                                                                                                                                              0.040          
                                                                                                                                                                                                                                                     (0.354)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Critic_Score:Rating_Code2                                                                                                                                                                                      0.067          
                                                                                                                                                                                                                                                     (0.231)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Critic_Score:Rating_Code2                                                                                                                                                                                             0.108          
                                                                                                                                                                                                                                                     (1.308)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Critic_Score:Rating_Code2                                                                                                                                                                                           0.021          
                                                                                                                                                                                                                                                     (0.164)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Critic_Score:Rating_Code2                                                                                                                                                                                         -0.123          
                                                                                                                                                                                                                                                     (0.286)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Critic_Score:Rating_Code2                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Critic_Score:Rating_Code2                                                                                                                                                                                              -0.127          
                                                                                                                                                                                                                                                     (0.342)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Critic_Score:Rating_Code2                                                                                                                                                                                       -0.183          
                                                                                                                                                                                                                                                     (0.725)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Critic_Score:Rating_Code2                                                                                                                                                                                               0.037          
                                                                                                                                                                                                                                                     (0.956)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Critic_Score:Rating_Code2                                                                                                                                                                                            -0.118          
                                                                                                                                                                                                                                                     (0.737)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Critic_Score:Rating_Code3                                                                                                                                                                                      -0.008          
                                                                                                                                                                                                                                                     (0.334)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Critic_Score:Rating_Code3                                                                                                                                                                                              0.299          
                                                                                                                                                                                                                                                     (2.063)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Critic_Score:Rating_Code3                                                                                                                                                                                           -0.037          
                                                                                                                                                                                                                                                     (0.166)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Critic_Score:Rating_Code3                                                                                                                                                                                        0.025          
                                                                                                                                                                                                                                                     (0.158)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Critic_Score:Rating_Code3                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Critic_Score:Rating_Code3                                                                                                                                                                                            -0.007          
                                                                                                                                                                                                                                                     (0.207)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Critic_Score:Rating_Code3                                                                                                                                                                                           -0.184          
                                                                                                                                                                                                                                                     (0.235)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Critic_Score:Rating_Code3                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Critic_Score:Rating_Code3                                                                                                                                                                                                -0.038          
                                                                                                                                                                                                                                                     (0.128)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Critic_Score:Rating_Code3                                                                                                                                                                                       -0.194          
                                                                                                                                                                                                                                                     (0.409)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Critic_Score:Rating_Code3                                                                                                                                                                                               0.130          
                                                                                                                                                                                                                                                     (0.237)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Critic_Score:Rating_Code3                                                                                                                                                                                            -0.073          
                                                                                                                                                                                                                                                     (0.176)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Critic_Score:Rating_Code3                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Critic_Score:Rating_Code3                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Critic_Score:Rating_Code3                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Critic_Score:Rating_Code3                                                                                                                                                                                         -0.177          
                                                                                                                                                                                                                                                     (0.235)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Critic_Score:Rating_Code3                                                                                                                                                                                                 0.058          
                                                                                                                                                                                                                                                     (1.009)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Critic_Score:Rating_Code3                                                                                                                                                                                              -0.136          
                                                                                                                                                                                                                                                     (0.142)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Critic_Score:Rating_Code3                                                                                                                                                                                    0.040          
                                                                                                                                                                                                                                                     (0.203)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Critic_Score:Rating_Code3                                                                                                                                                                                          -0.036          
                                                                                                                                                                                                                                                     (0.216)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Critic_Score:Rating_Code3                                                                                                                                                                                        -0.061          
                                                                                                                                                                                                                                                     (0.265)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Critic_Score:Rating_Code3                                                                                                                                                                                         0.029          
                                                                                                                                                                                                                                                     (0.119)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Critic_Score:Rating_Code3                                                                                                                                                                                               -0.010          
                                                                                                                                                                                                                                                     (0.170)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Critic_Score:Rating_Code3                                                                                                                                                                                             -0.080          
                                                                                                                                                                                                                                                     (0.301)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Critic_Score:Rating_Code3                                                                                                                                                                                     -0.086          
                                                                                                                                                                                                                                                     (0.306)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Critic_Score:Rating_Code3                                                                                                                                                                                             0.152          
                                                                                                                                                                                                                                                     (0.989)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Critic_Score:Rating_Code3                                                                                                                                                                                          -0.077          
                                                                                                                                                                                                                                                     (0.166)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Critic_Score:Rating_Code3                                                                                                                                                                                         -0.116          
                                                                                                                                                                                                                                                     (0.361)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Critic_Score:Rating_Code3                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Critic_Score:Rating_Code3                                                                                                                                                                                              -0.106          
                                                                                                                                                                                                                                                     (0.294)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Critic_Score:Rating_Code3                                                                                                                                                                                       -0.174          
                                                                                                                                                                                                                                                     (0.624)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Critic_Score:Rating_Code3                                                                                                                                                                                               0.019          
                                                                                                                                                                                                                                                     (0.914)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Critic_Score:Rating_Code3                                                                                                                                                                                            -0.135          
                                                                                                                                                                                                                                                     (0.719)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Critic_Score:Rating_Code4                                                                                                                                                                                       0.006          
                                                                                                                                                                                                                                                     (0.261)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Critic_Score:Rating_Code4                                                                                                                                                                                              0.287          
                                                                                                                                                                                                                                                     (2.065)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Critic_Score:Rating_Code4                                                                                                                                                                                           -0.046          
                                                                                                                                                                                                                                                     (0.247)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Critic_Score:Rating_Code4                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Critic_Score:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Critic_Score:Rating_Code4                                                                                                                                                                                            -0.010          
                                                                                                                                                                                                                                                     (0.212)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Critic_Score:Rating_Code4                                                                                                                                                                                           -0.119          
                                                                                                                                                                                                                                                     (0.385)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Critic_Score:Rating_Code4                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Critic_Score:Rating_Code4                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Critic_Score:Rating_Code4                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Critic_Score:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Critic_Score:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Critic_Score:Rating_Code4                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Critic_Score:Rating_Code4                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Critic_Score:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Critic_Score:Rating_Code4                                                                                                                                                                                          0.011          
                                                                                                                                                                                                                                                     (0.591)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Critic_Score:Rating_Code4                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Critic_Score:Rating_Code4                                                                                                                                                                                               0.001          
                                                                                                                                                                                                                                                     (0.245)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Critic_Score:Rating_Code4                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Critic_Score:Rating_Code4                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Critic_Score:Rating_Code4                                                                                                                                                                                        -0.050          
                                                                                                                                                                                                                                                     (0.207)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Critic_Score:Rating_Code4                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Critic_Score:Rating_Code4                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Critic_Score:Rating_Code4                                                                                                                                                                                             -0.094          
                                                                                                                                                                                                                                                     (0.307)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Critic_Score:Rating_Code4                                                                                                                                                                                      0.108          
                                                                                                                                                                                                                                                     (0.265)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Critic_Score:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Critic_Score:Rating_Code4                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Critic_Score:Rating_Code4                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Critic_Score:Rating_Code4                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Critic_Score:Rating_Code4                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Critic_Score:Rating_Code4                                                                                                                                                                                       -0.013          
                                                                                                                                                                                                                                                     (0.999)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Critic_Score:Rating_Code4                                                                                                                                                                                               0.095          
                                                                                                                                                                                                                                                     (0.345)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Critic_Score:Rating_Code4                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                      -0.026          
                                                                                                                                                                                                                                                     (0.077)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                              0.070          
                                                                                                                                                                                                                                                     (0.340)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                           -0.025          
                                                                                                                                                                                                                                                     (0.037)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                      -0.033          
                                                                                                                                                                                                                                                     (0.071)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                              0.070          
                                                                                                                                                                                                                                                     (0.324)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                           -0.013          
                                                                                                                                                                                                                                                     (0.033)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                      -0.005          
                                                                                                                                                                                                                                                     (0.073)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                              0.072          
                                                                                                                                                                                                                                                     (0.322)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                            0.014          
                                                                                                                                                                                                                                                     (0.037)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                               0.011          
                                                                                                                                                                                                                                                     (0.058)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                0.021          
                                                                                                                                                                                                                                                     (0.081)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                   -0.003          
                                                                                                                                                                                                                                                     (0.038)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                               -0.076          
                                                                                                                                                                                                                                                     (0.050)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                  0.072          
                                                                                                                                                                                                                                                     (0.091)         
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                 -0.064          
                                                                                                                                                                                                                                                     (0.093)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                            0.013          
                                                                                                                                                                                                                                                     (0.048)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                 0.035          
                                                                                                                                                                                                                                                     (0.055)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                             -0.014          
                                                                                                                                                                                                                                                     (0.067)         
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                 -0.0004         
                                                                                                                                                                                                                                                     (0.056)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                               -0.030          
                                                                                                                                                                                                                                                     (0.070)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                               0.024          
                                                                                                                                                                                                                                                     (0.047)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                0.057          
                                                                                                                                                                                                                                                     (0.052)         
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                   -0.005          
                                                                                                                                                                                                                                                     (0.038)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                               -0.070          
                                                                                                                                                                                                                                                     (0.045)         
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                 -0.076*         
                                                                                                                                                                                                                                                     (0.043)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                            0.011          
                                                                                                                                                                                                                                                     (0.046)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                 0.022          
                                                                                                                                                                                                                                                     (0.044)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                             -0.027          
                                                                                                                                                                                                                                                     (0.046)         
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                 -0.006          
                                                                                                                                                                                                                                                     (0.097)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                               -0.033          
                                                                                                                                                                                                                                                     (0.090)         
                                                                                                                                                                                                                                                                     
GenreAdventure:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               0.012          
                                                                                                                                                                                                                                                     (0.103)         
                                                                                                                                                                                                                                                                     
GenreFighting:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreMisc:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                   -0.023          
                                                                                                                                                                                                                                                     (0.082)         
                                                                                                                                                                                                                                                                     
GenrePlatform:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreRacing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                 -0.042          
                                                                                                                                                                                                                                                     (0.074)         
                                                                                                                                                                                                                                                                     
GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                            0.002          
                                                                                                                                                                                                                                                     (0.087)         
                                                                                                                                                                                                                                                                     
GenreShooter:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                 0.019          
                                                                                                                                                                                                                                                     (0.050)         
                                                                                                                                                                                                                                                                     
GenreSimulation:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
GenreSports:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                  0.014          
                                                                                                                                                                                                                                                     (0.167)         
                                                                                                                                                                                                                                                                     
GenreStrategy:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               -0.021          
                                                                                                                                                                                                                                                     (0.261)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                        0.020          
                                                                                                                                                                                                                                                     (0.227)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                              
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                             0.016          
                                                                                                                                                                                                                                                     (0.201)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                             0.081          
                                                                                                                                                                                                                                                     (0.128)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                  0.036          
                                                                                                                                                                                                                                                     (0.298)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                         0.112          
                                                                                                                                                                                                                                                     (0.168)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                              0.090          
                                                                                                                                                                                                                                                     (0.069)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                               -0.092          
                                                                                                                                                                                                                                                     (0.171)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                           0.092          
                                                                                                                                                                                                                                                     (0.127)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                  0.027          
                                                                                                                                                                                                                                                     (0.396)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                0.068          
                                                                                                                                                                                                                                                     (0.110)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                    
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                          0.019          
                                                                                                                                                                                                                                                     (0.104)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                         -0.074          
                                                                                                                                                                                                                                                     (0.077)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                              -0.007          
                                                                                                                                                                                                                                                     (0.195)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                      
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                              0.001          
                                                                                                                                                                                                                                                     (0.500)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                           0.041          
                                                                                                                                                                                                                                                     (0.105)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                0.043          
                                                                                                                                                                                                                                                     (0.122)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                         0.090          
                                                                                                                                                                                                                                                     (0.307)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                                0.010          
                                                                                                                                                                                                                                                     (0.306)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code2                                                                                                                                                                              0.053          
                                                                                                                                                                                                                                                     (0.252)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                        0.004          
                                                                                                                                                                                                                                                     (0.130)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                              -0.096          
                                                                                                                                                                                                                                                     (0.648)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                             0.007          
                                                                                                                                                                                                                                                     (0.081)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                        -0.020          
                                                                                                                                                                                                                                                     (0.073)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                             0.099          
                                                                                                                                                                                                                                                     (0.090)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                  0.011          
                                                                                                                                                                                                                                                     (0.055)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                         0.122          
                                                                                                                                                                                                                                                     (0.165)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                              0.067          
                                                                                                                                                                                                                                                     (0.068)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                           0.111          
                                                                                                                                                                                                                                                     (0.085)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                  0.026          
                                                                                                                                                                                                                                                     (0.347)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                0.084          
                                                                                                                                                                                                                                                     (0.056)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                    -0.012          
                                                                                                                                                                                                                                                     (0.110)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                            0.031          
                                                                                                                                                                                                                                                     (0.116)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                          0.024          
                                                                                                                                                                                                                                                     (0.097)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                         -0.019          
                                                                                                                                                                                                                                                     (0.048)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                 0.001          
                                                                                                                                                                                                                                                     (0.068)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                               0.045          
                                                                                                                                                                                                                                                     (0.180)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                       0.056          
                                                                                                                                                                                                                                                     (0.116)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                             -0.035          
                                                                                                                                                                                                                                                     (0.334)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                            0.040          
                                                                                                                                                                                                                                                     (0.078)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                           0.046          
                                                                                                                                                                                                                                                     (0.126)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                0.038          
                                                                                                                                                                                                                                                     (0.104)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                         0.088          
                                                                                                                                                                                                                                                     (0.242)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                                0.018          
                                                                                                                                                                                                                                                     (0.291)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code3                                                                                                                                                                              0.047          
                                                                                                                                                                                                                                                     (0.251)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                       
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                              -0.089          
                                                                                                                                                                                                                                                     (0.651)         
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreAdventure:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                             0.004          
                                                                                                                                                                                                                                                     (0.118)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreFighting:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreFighting:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreFighting:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreMisc:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                             0.089          
                                                                                                                                                                                                                                                     (0.145)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreMisc:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreMisc:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                        
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePlatform:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenrePuzzle:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRacing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                           0.023          
                                                                                                                                                                                                                                                     (0.242)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRacing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRacing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                    
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreRole-Playing:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreShooter:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                         
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreShooter:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreShooter:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                               0.035          
                                                                                                                                                                                                                                                     (0.181)         
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                      
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSimulation:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                           
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreSports:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                          
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreSports:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreSports:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Microsoft:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                         0.025          
                                                                                                                                                                                                                                                     (0.356)         
                                                                                                                                                                                                                                                                     
Manufacturer2PC:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                               
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Manufacturer2Sony:GenreStrategy:Publisher_Code:Critic_Score:Rating_Code4                                                                                                                                                                                             
                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                     
Rating_Code2                                                                                                                                                                                                              -0.293***                  -1.569          
                                                                                                                                                                                                                           (0.077)                   (3.273)         
                                                                                                                                                                                                                                                                     
Rating_Code3                                                                                                                                                                                                              -0.238***                  -0.830          
                                                                                                                                                                                                                           (0.068)                   (3.118)         
                                                                                                                                                                                                                                                                     
Rating_Code4                                                                                                                                                                                                                0.095                    -0.581          
                                                                                                                                                                                                                           (0.084)                   (4.091)         
                                                                                                                                                                                                                                                                     
Constant                                                                                  0.852***                 0.816***                  -0.073                   -1.964***                 -1.583***                 -1.419***                   1.507          
                                                                                          (0.045)                  (0.062)                   (0.091)                   (0.130)                   (0.143)                   (0.150)                   (2.444)         
                                                                                                                                                                                                                                                                     
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Observations                                                                               7,095                    7,095                     7,095                     7,095                     7,095                     7,095                     7,095          
R2                                                                                         0.008                    0.015                     0.039                     0.090                     0.095                     0.100                     0.188          
Adjusted R2                                                                                0.008                    0.013                     0.036                     0.088                     0.093                     0.098                     0.112          
Residual Std. Error                                                                  1.931 (df = 7091)        1.926 (df = 7080)         1.903 (df = 7079)         1.852 (df = 7078)         1.846 (df = 7077)         1.841 (df = 7074)         1.827 (df = 6488)    
F Statistic                                                                       19.363*** (df = 3; 7091) 7.774*** (df = 14; 7080) 18.910*** (df = 15; 7079) 43.713*** (df = 16; 7078) 43.754*** (df = 17; 7077) 39.516*** (df = 20; 7074) 2.474*** (df = 606; 6488)
=====================================================================================================================================================================================================================================================================
Note:                                                                                                                                                                                                                                     *p<0.1; **p<0.05; ***p<0.01

With my models visualized, I’m immediately drawn to the adjusted R squared values at the bottom. It seems that the values progressively improve as more control variables are introduced to the models. The strongest adjusted R squared value I received comes from the last interaction model. With an adjusted R squared of 0.112, this model seems to be the best fit thus far. However, before I make that claim, I would also like to evaluate my models using the AIC and BIC evaluation methods. This will help to firmly establish which model is better fitting of my analysis.

In the case of AIC/BIC evaluations, the lower the value received, the better the model fits. With that in mind, I can proceed with the evaluations.

Model 1

Code
AIC(fit1)
[1] 29480.33
Code
BIC(fit1)
[1] 29514.66

Model 2

Code
AIC(fit2)
[1] 29451.97
Code
BIC(fit2)
[1] 29561.85

Model 3

Code
AIC(fit3)
[1] 29283.46
Code
BIC(fit3)
[1] 29400.21

Model 4

Code
AIC(fit4)
[1] 28895.63
Code
BIC(fit4)
[1] 29019.24

Model 5

Code
AIC(fit5)
[1] 28857.14
Code
BIC(fit5)
[1] 28987.62

Model 6

Code
AIC(fit6)
[1] 28820.77
Code
BIC(fit6)
[1] 28971.85

Model 7

Code
AIC(fit7)
[1] 29269.12
Code
BIC(fit7)
[1] 33444.34

While the adjusted R squared value is smaller, according to my AIC and BIC evaluations, model 6 is actually the best fitting for the analysis. This could be due to a number of different reasons, but I suspect that the introduction of interaction terms in the last model over complicated the equation which made it less accurate.

With model 6 established as the best fitting, I’d like to summarize it on its own in order to clearly visualize my coefficients once more.

Code
summary(fit6)

Call:
lm(formula = Global_Sales ~ Manufacturer2 + Genre + Publisher_Code + 
    Critic_Score + User_Score + Rating_Code, data = VGS3)

Residuals:
   Min     1Q Median     3Q    Max 
-2.032 -0.644 -0.268  0.213 81.413 

Coefficients:
                        Estimate Std. Error t value Pr(>|t|)    
(Intercept)            -1.419041   0.149798  -9.473  < 2e-16 ***
Manufacturer2Microsoft -0.288588   0.067790  -4.257 2.10e-05 ***
Manufacturer2PC        -0.926065   0.089310 -10.369  < 2e-16 ***
Manufacturer2Sony      -0.108869   0.058608  -1.858 0.063271 .  
GenreAdventure         -0.258751   0.123758  -2.091 0.036583 *  
GenreFighting          -0.068227   0.106457  -0.641 0.521619    
GenreMisc               0.265853   0.105664   2.516 0.011891 *  
GenrePlatform           0.050409   0.107251   0.470 0.638364    
GenrePuzzle            -0.295679   0.175644  -1.683 0.092342 .  
GenreRacing             0.060189   0.094799   0.635 0.525503    
GenreRole-Playing      -0.091214   0.082760  -1.102 0.270430    
GenreShooter            0.103116   0.078432   1.315 0.188647    
GenreSimulation         0.045272   0.117285   0.386 0.699508    
GenreSports            -0.263520   0.088469  -2.979 0.002905 ** 
GenreStrategy          -0.227414   0.122041  -1.863 0.062444 .  
Publisher_Code          0.232663   0.027988   8.313  < 2e-16 ***
Critic_Score            0.040525   0.002079  19.489  < 2e-16 ***
User_Score             -0.121010   0.019307  -6.268 3.88e-10 ***
Rating_Code2           -0.293211   0.076622  -3.827 0.000131 ***
Rating_Code3           -0.237841   0.068321  -3.481 0.000502 ***
Rating_Code4            0.095068   0.084334   1.127 0.259664    
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 1.841 on 7074 degrees of freedom
Multiple R-squared:  0.1005,    Adjusted R-squared:  0.09795 
F-statistic: 39.52 on 20 and 7074 DF,  p-value: < 2.2e-16

From model 6, I receive an extremely small p-value and Adjusted R-Squared. This means that the model holds statistical significance but that the reaction in the response variable cannot be fully explained by the independent variables that I’ve provided. Now, for the resulting coefficients.

For the Manufacturer variable, Nintendo is being used as the reference level and the values provided by my regression analysis show statistical significance at the 0.001 level. Aside from Nintendo, the analysis for Microsoft and PC platforms also prove to be statistically significant and to the same degree as well. The only manufacturer analysis proven not to be statistically significant is that for Sony. Therefore, according to my analysis, for every unit increase (1 million dollars) in global sales for Nintendo games, Microsoft and PC games are projected to make approximately 29% and 93% less respectively.

Moving on to the Genre variable, the reference level utilized was the Action genre. The only analyses proven to be statistically significant for this variable are that for the Adventure, Misc and Sports genres. Adventure and Misc are statistically significant at the 0.05 significance level, while Sports is statistically significant at 0.01. This provides me with enough information to construct the following statement. For every unit increase in global sales for Action games, Adventure and Sports games are projected to make approximately 26% less while Misc games are projected to make about 27% more.

Next up is the Publisher_Code variable, which by default establishes the 1st level (A publishers) as the reference level. Under this regression model, the variable did indeed prove to be statistically significant at the 0.001 level. Therefore, starting with single A studios, each subsequent level of publishers is predicted to make about 23% more in global sales than the last.

Now, it’s time to look at the Critic_Score variable. Again, the variable is proven to be significant at the 0.001 level and I’m provided with a coefficient of ~0.04. Because this a continuous variable, the resulting interpretation is slightly different. In this case, unit increase applies to the Critic_Score scale rather than an incremental increase in Global_Sales. This means, that for every 1 unit increase to a game’s critic score, global sales for that game increase by 0.04 million dollars.

The analysis and interpretation for the User_Ratings variable is near identical to that of Critic_Score. Statistically significant at the 0.001 level, this time I am provided with a coefficient of about -0.12. Thus, for every 1 unit increase to a game’s user score, global sales for that game decrease by 0.12 million dollars. This is interesting because I would have expected a net positive relationship between User_Score and Global_Sales. However, I’m not entirely surprised. I had previously observed that the relationship between user ratings and sales seemed a tad bit sheer or drastic. Having received the results I have now, I’m beginning to suspect that the scale of user ratings may be having a large impact on the analysis’ results. As compared to the 0-100 scale for Critic_Score, User_Score is based on a scale of 1-10. Therefore, the effect of a single unit increase would be much more drastic in comparison.

The last variable to interpret is Rating_Code. Back to using a categorical variable, the reference level here is set to the rating coded as 1 (Rated E & K-A games). Under these parameters, the only other ratings proven to be statistically significant are E10+ & T rated games, both at the 0.001 level. The coefficients provided for each are approximately -0.29 & -0.24, respectively. Therefore, for every 1 million dollars rated E/K-A games generate, E10+ and T rated games are projected to make approximately 29% and 24% less respectively.

Although not entirely what I expected to receive, I believe that I have interpreted the results of my regression analysis to the best of my ability. Having acknowledged all statistically significant variables, I can now confidently define the formula for model 6 as the following:

Global_Sales = -1.419041 + (-0.288588 * Microsoft) + (-0.926065 * PC) + (-0.258751 * Adventure) + (0.265853 * Misc) + (-0.263520 * Sports) + (0.232663 * Publisher_Code) + (0.040525 * Critic_Score) + (-0.121010 * User_Score) + (-0.293211 * Rating_Code2) + (-0.237841 * Rating_Code3)

Diagnostics

The last step in my analysis will be to create a series of diagnostic plots to confirm whether or not model 6 violates any of the plot-respective regression assumptions. I will be specifically drawing 4 diagnostic plots, including: the Residuals vs Fitted, Normal Q-Q, Scale-Location, and Cook’s Distance plots.

Code
par(mfrow = c(2, 2)); plot(fit6, which = 1:4)

The first plot is the Residuals vs. Fitted. I see on the plot that the both the linearity and constant variance assumption are violated. This is portrayed by the points not being linearly or evenly distributed around the origin. Additionally, there are still some very notable outliers. Were these outliers to be removed, the model might actually hold up to the assumptions. However, considering the quantity of outliers at the tail that veer from the line, that would mean removing a significant amount of entries from our data.

The next plot I’ll be looking at is a Normal Q-Q which is easy to tell at a glance that a violation has been made. I can see that the plot starts off relatively linear but there is a skew as it reaches the end, meaning the Normality assumption has been violated. Again, this is most likely attributed to the outliers.

Next is the Scale-Location plot. From the graph, I can see that there is a lot of variation in distance from each point to the line. This would indicate a direct violation of the Constant Variance assumption.

The last drawing to interpret is the Cook’s Distance plot. It’s easy to see the violation here immediately. In the graph, it’s clear that there are values greater than 4/n, which is a violation of the Influential Observation assumption.

From these plots, I can’t help but wonder what my results would be like were the outliers to be excluded from the data. With that said, I believe the effect of doing so would ultimately be detrimental to my analysis, as it wouldn’t encapsulate the full scope of my project. Hopefully, with more games being released every year, this data will grow and continue to contribute to the research I’ve conducted within the scope of this project.

Conclusions

Unfortunately, it’s obvious at this point that I simply do not have enough data to create a model that can accurately and fully predict the effects of Genre & Platform on video game sales. I was, however, able to make progress toward confirming my hypotheses, even if I wasn’t able to prove any given hypothesis in its entirety.

For my 1st hypothesis, Platform and Genre significantly impact Global Sales, I was able to at least prove that certain manufacturers and genres were significantly more/less likely to impact the global sales of a given video game.

My 2nd hypothesis, Nintendo and Sony consoles, when compared to other platforms, host the most financially successful video games, had similar results. Unfortunately, I could not provide my model with enough data so that my results for Sony would be considered statistically significant. Still, I was able to prove, at the 0.001 level, that Nintendo does indeed host the most financially successful games when compared to the remaining 2 platform manufacturers.

Even with both these partial successes, my one regret is that my 3rd hypothesis, The Shooter genre is the most financially successful genre when compared to all others, had to remain unacknowledged. Similar to what happened with the Sony manufacturer, I couldn’t provide my model with enough data to give me statistically significant results for the Shooter genre.

Still, even after these pros and cons, the analysis I was able to conduct proved to be extremely interesting and engaging. This topic provides clear potential for future research. Were I to continue, I would further investigate the effects publishers and critic ratings have on global sales as well. Furthermore, I would apply the same methods I did here to regional sales as well, as the data set I used also provided variables such as NA_Sales, EU_Sales, JP_Sales and Other_Sales.

I’d like to extend a special thank you to Professor Pang for her help throughout the scope of my project. This concludes my study of the The Effects of Genre & Platform on Video Game Sales.

References

Egenfeldt-Nielsen, Simon, et al. Understanding Video Games : The Essential Introduction, Taylor & Francis Group, 2012. ProQuest Ebook Central, https://ebookcentral.proquest.com/lib/uma/detail.action?docID=1181119.

Etchells, Pete. Lost in a Good Game: Why We Play Video Games and What They Can Do for Us. Icon Books, 2019.

McCullough, Hayley. (2019). From Zelda to Stanley: Comparing the Integrative Complexity of Six Video Game Genres. Press Start. 5. 137-149.

Gillies, Kendall. “Video Game Sales and Ratings.” Kaggle, 25 Jan. 2017, https://www.kaggle.com/datasets/kendallgillies/video-game-sales-and-ratings?resource=download.